Skip to content

Commit

Permalink
Prepare for dartdoc 0.25.0 (#1842)
Browse files Browse the repository at this point in the history
* Changelog and pubspec changes

* Update version and rebuild test package docs
  • Loading branch information
jcollins-g authored Nov 19, 2018
1 parent 3b47834 commit 13daf78
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 10 deletions.
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
## 0.24.2-dev
## 0.25.0
* Fix crash if a code reference ambiguously referred to a parameter of
an optional function parameter (#1835, #1841)
* Allow annotations that return the dynamic type (#1834, #1840)
* Better error messages in the case of a package with no documentable
libraries (#1832)
* Fix a problem where the reexport tagger could trigger stack overflow
if a library exported itself (#1832, #1838)
* Performance-related refactorings to return some of the performance lost
with macro templates in private libraries (#1828, #1829, #1831, #1837)
* Fix several Flutter problems (#1819)
* Fix assertion failure if macros are defined in packages with no public
libraries
* Allow declaring macro templates in private libraries
* Avoid circular dependency in finding special objects
* Populate reference cache with child elements of mixins (fixes ~45 links
inside Flutter)
* Added support for automatic snapshotting of external tools (i.e. for {@tool}
directives) written in Dart.
directives) written in Dart. (#1820)
* Changes to reduce use of internal APIs in analyzer (#1817, #1825)
* Template text now appears where it is defined in addition to where it is
referenced (#1812)
* Change placeholder string in search box to 'Search API Docs'
* Fix some instances where macros were not being resolved correctly (#1811)
* Macro templates now appear where they are defined in addition to where
they are referenced (#1810)

## 0.24.1
* Added more metadata (element name, project name, etc.) to external tool invocations.
Expand Down
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 = '0.24.2-dev';
const packageVersion = '0.25.0';
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: dartdoc
# Also update the `version` field in lib/dartdoc.dart.
version: 0.24.2-dev
version: 0.25.0
author: Dart Team <[email protected]>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc
environment:
sdk: '>=2.0.0 <3.0.0'
sdk: '>=2.1.0-dev.9.4 <3.0.0'

dependencies:
analyzer: ^0.33.3+1
analyzer: ^0.33.3+2
args: '>=1.4.1 <2.0.0'
collection: ^1.2.0
crypto: ^2.0.6
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/__404error.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testing/test_package_docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testing/test_package_docs_dev/__404error.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testing/test_package_docs_dev/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 13daf78

Please sign in to comment.