Skip to content

Commit cb4e34f

Browse files
authored
Release 8.0.0. (#981)
1 parent 0181e96 commit cb4e34f

File tree

10 files changed

+37
-76
lines changed

10 files changed

+37
-76
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
# 8.0.0
4+
5+
- Stable null safe release.
6+
- Add `toJson` and `fromJson` convenience methods to `Serializers`.
7+
38
# 8.0.0-nullsafety.0
49

510
- Migrate to NNBD.

benchmark/pubspec.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: benchmark
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
publish_to: none
44
description: >
55
Benchmark, not for publishing.
@@ -9,18 +9,12 @@ environment:
99
sdk: '>=2.0.0-dev <3.0.0'
1010

1111
dependencies:
12-
built_collection: ^5.0.0-nullsafety.0
13-
built_value: ^8.0.0-nullsafety.0
12+
built_collection: ^5.0.0
13+
built_value: ^8.0.0
1414

1515
dev_dependencies:
1616
build_runner: ^1.0.0
17-
built_value_generator: ^8.0.0-nullsafety.0
17+
built_value_generator: ^8.0.0
1818
pedantic: ^1.4.0
1919
quiver: '>=0.21.0 <3.0.0'
2020
test: ^1.0.0
21-
22-
dependency_overrides:
23-
built_value:
24-
path: ../built_value
25-
built_value_generator:
26-
path: ../built_value_generator

built_value/pubspec.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the runtime dependency.
@@ -9,14 +9,10 @@ environment:
99
sdk: '>=2.12.0-0 <3.0.0'
1010

1111
dependencies:
12-
built_collection: ^5.0.0-nullsafety
13-
collection: ^1.15.0-nullsafety
14-
fixnum: ^1.0.0-nullsafety
12+
built_collection: ^5.0.0
13+
collection: ^1.15.0
14+
fixnum: ^1.0.0
1515

1616
dev_dependencies:
1717
pedantic: ^1.4.0
1818
test: ^1.16.0-nullsafety
19-
20-
dependency_overrides:
21-
built_value_generator:
22-
path: ../built_value_generator
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_analyzer_plugin
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
description: >
44
Experimental analyzer plugin for the built_value code generator.
55
homepage: https://github.com/google/built_value.dart
@@ -11,15 +11,9 @@ dependencies:
1111
analyzer: '>=0.39.0 <0.40.0'
1212
analyzer_plugin: '>=0.1.0 <0.3.0'
1313
built_value: '>=7.0.0 <7.1.0'
14-
built_value_generator: ^8.0.0-nullsafety.0
14+
built_value_generator: ^8.0.0
1515

1616
dev_dependencies:
1717
build_test: ^0.10.3
1818
pedantic: ^1.4.0
1919
test: ^1.0.0
20-
21-
dependency_overrides:
22-
built_value:
23-
path: ../built_value
24-
built_value_generator:
25-
path: ../built_value_generator

built_value_generator/pubspec.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_generator
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the dev dependency.
@@ -12,8 +12,8 @@ dependencies:
1212
analyzer: '>=0.40.0 <0.41.0'
1313
build: ^1.0.0
1414
build_config: '>=0.3.1 <0.5.0'
15-
built_collection: '>=2.0.0 <5.0.0-nullsafety.1'
16-
built_value: ^8.0.0-nullsafety.0
15+
built_collection: ^5.0.0
16+
built_value: ^8.0.0
1717
source_gen: ^0.9.0
1818
quiver: '>=0.21.0 <3.0.0'
1919

@@ -23,7 +23,3 @@ dev_dependencies:
2323
logging: ^0.11.0
2424
pedantic: ^1.4.0
2525
test: ^1.0.0
26-
27-
dependency_overrides:
28-
built_value:
29-
path: ../built_value
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: built_value_analyzer_plugin_loader
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
description: This pubspec determines the version of the analyzer plugin to load.
44
environment:
55
sdk: '>=1.24.0-dev.1.0'
66
dependencies:
7-
built_value_analyzer_plugin: ^8.0.0-nullsafety.0
8-
built_value_generator: ^8.0.0-nullsafety.0
7+
built_value_analyzer_plugin: ^8.0.0
8+
built_value_generator: ^8.0.0

built_value_test/pubspec.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_test
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library provides test support.
@@ -9,20 +9,14 @@ environment:
99
sdk: '>=2.3.0 <3.0.0'
1010

1111
dependencies:
12-
built_value: ^8.0.0-nullsafety.0
13-
built_collection: ^5.0.0-nullsafety.0
12+
built_value: ^8.0.0
13+
built_collection: ^5.0.0
1414
collection: ^1.0.0
1515
matcher: ^0.12.0
1616
quiver: '>=0.21.0 <3.0.0'
1717

1818
dev_dependencies:
19-
built_value_generator: ^8.0.0-nullsafety.0
19+
built_value_generator: ^8.0.0
2020
build_runner: ^1.0.0
2121
pedantic: ^1.4.0
2222
test: ^1.0.0
23-
24-
dependency_overrides:
25-
built_value:
26-
path: ../built_value
27-
built_value_generator:
28-
path: ../built_value_generator

chat_example/pubspec.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: chat_example
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
publish_to: none
44
description: >
55
Just an example, not for publishing.
@@ -9,21 +9,15 @@ environment:
99
sdk: '>=2.2.0 <3.0.0'
1010

1111
dependencies:
12-
built_collection: ^5.0.0-nullsafety.0
13-
built_value: ^8.0.0-nullsafety.0
12+
built_collection: ^5.0.0
13+
built_value: ^8.0.0
1414
shelf: ^0.7.3
1515
shelf_proxy: ^0.1.0
1616
shelf_web_socket: ^0.2.2
1717
web_socket_channel: ^1.0.0
1818

1919
dev_dependencies:
2020
build_runner: ^1.0.0
21-
built_value_generator: ^8.0.0-nullsafety.0
21+
built_value_generator: ^8.0.0
2222
pedantic: ^1.4.0
2323
test: ^1.0.0
24-
25-
dependency_overrides:
26-
built_value:
27-
path: ../built_value
28-
built_value_generator:
29-
path: ../built_value_generator

end_to_end_test/pubspec.yaml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: end_to_end_test
2-
version: 8.0.0-nullsafety.0
2+
version: 8.0.0
33
publish_to: none
44
description: >
55
Tests, not for publishing.
@@ -9,20 +9,14 @@ environment:
99
sdk: '>=2.12.0-0 <3.0.0'
1010

1111
dependencies:
12-
built_collection: ^5.0.0-nullsafety.0
13-
built_value: 8.0.0-nullsafety.0
12+
built_collection: ^5.0.0
13+
built_value: ^8.0.0
1414

1515
dev_dependencies:
1616
build: ^1.0.0
1717
build_runner: ^1.0.0
18-
built_value_generator: ^8.0.0-nullsafety.0
19-
fixnum: ^1.0.0-nullsafety.0
18+
built_value_generator: ^8.0.0
19+
fixnum: ^1.0.0
2020
pedantic: ^1.4.0
2121
quiver: '>=0.21.0 <3.0.0'
2222
test: ^1.16.0-nullsafety
23-
24-
dependency_overrides:
25-
built_value:
26-
path: ../built_value
27-
built_value_generator:
28-
path: ../built_value_generator

example/pubspec.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,12 @@ environment:
1010
sdk: '>=2.0.0-dev <3.0.0'
1111

1212
dependencies:
13-
built_collection: ^5.0.0-nullsafety.0
14-
built_value: ^8.0.0-nullsafety.0
13+
built_collection: ^5.0.0
14+
built_value: ^8.0.0
1515

1616
dev_dependencies:
1717
build_runner: ^1.0.0
18-
built_value_generator: ^8.0.0-nullsafety.0
18+
built_value_generator: ^8.0.0
1919
pedantic: ^1.4.0
2020
quiver: '>=0.21.0 <3.0.0'
2121
test: ^1.0.0
22-
23-
dependency_overrides:
24-
built_value:
25-
path: ../built_value
26-
built_value_generator:
27-
path: ../built_value_generator

0 commit comments

Comments
 (0)