Skip to content

Commit

Permalink
Release 7.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmorgan committed Oct 30, 2019
1 parent 69eff55 commit ad10b71
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 20 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# 7.0.0

- Internal: clean up `built_value_generator` -> `built_value` dependency;
depend on minor instead of major version so we can in future handle tight
coupling between the two without a major version bump to `built_value`.

# 6.8.2

- Fix `_finalizeBuilder` generation so it uses the correct class name.
Expand Down
4 changes: 2 additions & 2 deletions benchmark/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: benchmark
version: 6.8.2
version: 7.0.0
description: >
Benchmark, not for publishing.
authors:
Expand All @@ -15,7 +15,7 @@ dependencies:

dev_dependencies:
build_runner: ^1.0.0
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
pedantic: ^1.4.0
quiver: '>=0.21.0 <3.0.0'
test: ^1.0.0
6 changes: 1 addition & 5 deletions built_value/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value
version: 6.8.2
version: 7.0.0
description: >
Value types with builders, Dart classes as enums, and serialization.
This library is the runtime dependency.
Expand All @@ -12,10 +12,6 @@ environment:

dependencies:
built_collection: '>=2.0.0 <5.0.0'
# `built_value` 6.8.0 changed default of `BuiltValueField.compare` and
# `BuiltValueField.serialize` to `null`, which breaks older
# `built_value_generator`.
built_value_generator: ^6.8.2
collection: ^1.0.0
fixnum: ^0.10.0
quiver: '>=0.21.0 <3.0.0'
Expand Down
4 changes: 2 additions & 2 deletions built_value_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value_generator
version: 6.8.2
version: 7.0.0
description: >
Value types with builders, Dart classes as enums, and serialization.
This library is the dev dependency.
Expand All @@ -16,7 +16,7 @@ dependencies:
build: ^1.0.0
build_config: '>=0.3.1 <0.5.0'
built_collection: '>=2.0.0 <5.0.0'
built_value: '>=5.5.5 <7.0.0'
built_value: '>=7.0.0 <7.1.0'
source_gen: ^0.9.0
quiver: '>=0.21.0 <3.0.0'

Expand Down
4 changes: 2 additions & 2 deletions built_value_generator/tools/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: built_value_generator_plugin_loader
version: 6.8.2
version: 7.0.0
description: This pubspec determines the version of the analyzer plugin to load.
environment:
sdk: '>=1.24.0-dev.1.0'
dependencies:
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
6 changes: 3 additions & 3 deletions built_value_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value_test
version: 6.8.2
version: 7.0.0
description: >
Value types with builders, Dart classes as enums, and serialization.
This library provides test support.
Expand All @@ -11,13 +11,13 @@ environment:
sdk: '>=2.0.0-dev <3.0.0'

dependencies:
built_value: '>=5.5.5 <7.0.0'
built_value: ^7.0.0
built_collection: '>=2.0.0 <5.0.0'
collection: ^1.0.0
quiver: '>=0.21.0 <3.0.0'
test: ^1.0.0

dev_dependencies:
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
build_runner: ^1.0.0
pedantic: ^1.4.0
4 changes: 2 additions & 2 deletions chat_example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: chat_example
version: 6.8.2
version: 7.0.0
description: >
Just an example, not for publishing.
authors:
Expand All @@ -19,6 +19,6 @@ dependencies:

dev_dependencies:
build_runner: ^1.0.0
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
pedantic: ^1.4.0
test: ^1.0.0
4 changes: 2 additions & 2 deletions end_to_end_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: end_to_end_test
version: 6.8.2
version: 7.0.0
description: >
Tests, not for publishing.
authors:
Expand All @@ -16,7 +16,7 @@ dependencies:
dev_dependencies:
build: ^1.0.0
build_runner: ^1.0.0
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
fixnum: ^0.10.0
pedantic: ^1.4.0
quiver: '>=0.21.0 <3.0.0'
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: example
version: 6.8.2
version: 7.0.0
description: >
Just an example, not for publishing.
authors:
Expand All @@ -15,7 +15,7 @@ dependencies:

dev_dependencies:
build_runner: ^1.0.0
built_value_generator: ^6.8.2
built_value_generator: ^7.0.0
pedantic: ^1.4.0
quiver: '>=0.21.0 <3.0.0'
test: ^1.0.0

0 comments on commit ad10b71

Please sign in to comment.