Skip to content

Commit 8060463

Browse files
authored
Release 8.10.1. (#1365)
1 parent 5810903 commit 8060463

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
# 8.10.1
44

5-
- Add mutable collection serializers: `List`, `Set`, `Map`. These let you
6-
easily serialize mutable collections of immutable value types; it's still
7-
recommended to avoid mutable collections inside value types, as they break
8-
hashing, comparison and caching.
5+
- Add mutable collection serializers so `built_value` can serialize `List`,
6+
`Set` and `Map`. It's still recommended to avoid mutable collections inside
7+
value types as they break hashing, comparison and caching; the intended use
8+
case is that you have one top level mutable collection of your immutable
9+
value types.
910

1011
# 8.10.0
1112

benchmark/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: benchmark
2-
version: 8.10.0
2+
version: 8.10.1
33
publish_to: none
44
description: >
55
Benchmark, not for publishing.
@@ -14,7 +14,7 @@ dependencies:
1414

1515
dev_dependencies:
1616
build_runner: '>=1.0.0 <3.0.0'
17-
built_value_generator: ^8.10.0
17+
built_value_generator: ^8.10.1
1818
pedantic: ^1.4.0
1919
quiver: '>=0.21.0 <4.0.0'
2020
test: ^1.0.0

built_value/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value
2-
version: 8.10.0
2+
version: 8.10.1
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the runtime dependency.

built_value_generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_generator
2-
version: 8.10.0
2+
version: 8.10.1
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the dev dependency.
@@ -17,7 +17,7 @@ dependencies:
1717
build: '>=1.0.0 <3.0.0'
1818
build_config: '>=0.3.1 <2.0.0'
1919
built_collection: ^5.0.0
20-
built_value: '>=8.1.0 <8.10.0'
20+
built_value: '>=8.1.0 <8.11.0'
2121
collection: ^1.15.0
2222
source_gen: '>=0.9.0 <3.0.0'
2323

built_value_test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_test
2-
version: 8.10.0
2+
version: 8.10.1
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library provides test support.
@@ -21,7 +21,7 @@ dependencies:
2121
quiver: '>=0.21.0 <4.0.0'
2222

2323
dev_dependencies:
24-
built_value_generator: ^8.10.0
24+
built_value_generator: ^8.10.1
2525
build_runner: '>=1.0.0 <3.0.0'
2626
pedantic: ^1.4.0
2727
test: ^1.0.0

chat_example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: chat_example
2-
version: 8.10.0
2+
version: 8.10.1
33
publish_to: none
44
description: >
55
Just an example, not for publishing.
@@ -21,6 +21,6 @@ dev_dependencies:
2121
build_runner: any
2222
build_test: any
2323
build_web_compilers: any
24-
built_value_generator: ^8.10.0
24+
built_value_generator: ^8.10.1
2525
pedantic: ^1.4.0
2626
test: ^1.0.0

end_to_end_test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: end_to_end_test
2-
version: 8.10.0
2+
version: 8.10.1
33
publish_to: none
44
description: >
55
Tests, not for publishing.
@@ -15,7 +15,7 @@ dependencies:
1515
dev_dependencies:
1616
build: '>=1.0.0 <3.0.0'
1717
build_runner: '>=1.0.0 <3.0.0'
18-
built_value_generator: ^8.10.0
18+
built_value_generator: ^8.10.1
1919
fixnum: ^1.0.0
2020
pedantic: ^1.4.0
2121
quiver: '>=0.21.0 <4.0.0'

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313

1414
dev_dependencies:
1515
build_runner: '>=1.0.0 <3.0.0'
16-
built_value_generator: ^8.10.0
16+
built_value_generator: ^8.10.1
1717
pedantic: ^1.4.0
1818
quiver: '>=0.21.0 <4.0.0'
1919
test: ^1.0.0

0 commit comments

Comments
 (0)