diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c1bcf9..4706747 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.0.0 + +First full release. At this point all changes until `2.0.0` will be backwards +compatible (new features) or bug fixes that are not breaking. This doesn't mean +that the entire Dart language is buildable with our API, though. + +**Contributions are welcome.** + +- Exposed `uri` in `ImportBuilder`, `ExportBuilder`, and `Part[Of]Builder`. + ## 1.0.0-beta+7 - Added `ExpressionBuilder#ternary`. diff --git a/README.md b/README.md index 4ef3eb4..9eeefbc 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,20 @@ the analyzer's own understood format. [analyzer]: https://pub.dartlang.org/packages/analyzer +## Contributing + +* Read and help us document common patterns over [at the wiki][wiki]. +* Is there a *bug* in the code? [File an issue][issue]. + +If a feature is missing (the Dart language is always evolving) or you'd like an +easier or better way to do something, consider [opening a pull request][pull]. +You can always [file an issue][issue], but generally speaking feature requests +will be on a best-effort basis. + +[wiki]: https://github.com/dart-lang/code_builder/wiki +[issue]: https://github.com/dart-lang/code_builder/issues +[pull]: https://github.com/dart-lang/code_builder/pulls + ## Usage Code builder has a narrow and user-friendly API. diff --git a/pubspec.yaml b/pubspec.yaml index ceae7f9..d79244b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: code_builder -version: 1.0.0-beta+7 +version: 1.0.0 description: A fluent API for generating Dart code author: Dart Team homepage: https://github.com/dart-lang/code_builder