Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.2

* Require `source_gen: ^0.7.5`.

## 3.0.1

* Upgrade to `built_value` 5.1.0.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: code_builder
version: 3.0.1
version: 3.0.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

going to publish this right away?

description: A fluent API for generating Dart code
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/code_builder
Expand All @@ -17,7 +17,7 @@ dev_dependencies:
build_runner: ^0.7.9
built_value_generator: ^5.1.0
dart_style: ^1.0.0
source_gen: ^0.7.0
source_gen: ^0.7.5
test: ^0.12.0

# Required until built_value_generator supports 0.7.9.
Expand Down
2 changes: 1 addition & 1 deletion tool/src/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import 'package:source_gen/source_gen.dart';
Builder builtValueBuilder(BuilderOptions _) {
return new PartBuilder([
const BuiltValueGenerator(),
], requireLibraryDirective: false);
]);
}