Skip to content

Commit

Permalink
Update pubspec and changelog for 4.1.0 (#2839)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollins-g authored Oct 25, 2021
1 parent fb621e1 commit 520e649
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## 4.1.0-dev
## 4.1.0
* Move to analyzer 2.7.0. (#2845)
* The library interface is now explicitly marked as experimental via meta.
* Experimental feature: HTML output from markdown rendering, `{@tool}` and
`{@inject-html}` is sanitized when hidden option `--sanitize-html` is passed.
* Refactor of ModelElement and ElementType constructors. Technically breaking
but known users of the API do not attempt to construct these types by hand.
(#2828, #2829)
* Move to recommended set of hints in linter and correct some small errors
in regexps. (#2833)

## 4.0.0
* BREAKING CHANGE: Refactors to support NNBD and adapt to new analyzer
Expand Down
2 changes: 1 addition & 1 deletion dartdoc_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v4.1.0-dev/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v4.1.0/%f%#L%l%'
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated code. Do not modify.
const packageVersion = '4.1.0-dev';
const packageVersion = '4.1.0';
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartdoc
# Run `dart run grinder build` after updating.
version: 4.1.0-dev
version: 4.1.0
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
args: ^2.3.0
charcode: ^1.3.1
collection: ^1.15.0
cli_util: ^0.3.4
cli_util: ^0.3.5
crypto: ^3.0.1
glob: ^2.0.1
html: ^0.15.0
Expand All @@ -36,7 +36,7 @@ dev_dependencies:
grinder: ^0.9.0
http: ^0.13.3
lints: ^1.0.1
test: ^1.17.12
test: ^1.19.0

executables:
dartdoc: null

0 comments on commit 520e649

Please sign in to comment.