Skip to content

Commit

Permalink
Prep to publish v0.22.1+5 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
nshahan committed Dec 10, 2018
1 parent 0153584 commit 04eae7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
@@ -1,9 +1,10 @@
## 0.22.1+5

Fix generic type error that occurs when using ChangeNotifier with a subclass of ChangeRecord.
Previously, calling `notifyChanges()` on `class Foo with ChangeNotifier<CustomChangeRecord> {}`
would throw a type error. Now, the `changes` stream emits a custom `ChangeRecords` class that
implements the `List` interface. This change is backwards compatible.
Fix generic type error that occurs when using ChangeNotifier with a subclass of
ChangeRecord. Previously, calling `notifyChanges()` on
`class Foo with ChangeNotifier<CustomChangeRecord> {}` would throw a type error.
Now, the `changes` stream emits a custom `ChangeRecords` class that implements
the `List` interface. This change is backwards compatible.

## 0.22.1+4

Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
@@ -1,5 +1,5 @@
name: observable
version: 0.22.1+4
version: 0.22.1+5
author: Dart Team <misc@dartlang.org>
description: Support for marking objects as observable
homepage: https://github.com/dart-lang/observable
Expand All @@ -11,8 +11,8 @@ dependencies:
meta: ^1.0.4
quiver: '>=0.24.0 <3.0.0'
dev_dependencies:
build_runner: '>=0.8.0 <0.10.0'
build_runner: '>=0.8.0 <2.0.0'
build_test: ^0.10.0
build_web_compilers: '>=0.3.1 <0.5.0'
build_web_compilers: '>=0.3.1 <2.0.0'
dart_style: ^1.0.9
test: ^1.3.0

0 comments on commit 04eae7a

Please sign in to comment.