Skip to content

Commit

Permalink
Add 4.0.0+1 description to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpryan committed Jan 14, 2020
1 parent df47530 commit 6b42b1c
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 4.0.0+1

* Moved package to Flutter Community

# 4.0.0

* `dispatch` returns the provided action
Expand All @@ -22,7 +26,7 @@
* Remove `combineTypedReducer`. Use `combineReducers` with normal reducers & `TypedReducer`s.
* Remove `MiddlewareBinding`, use `TypedMiddleware`.
* Remove `combineTypedMiddleware` -- no longer needed! Just create a normal `List<Middleware<State>>`!

# 2.1.1

* Ensure the repo is 100% healthy.
Expand All @@ -34,11 +38,11 @@
# 2.0.4

* Use absolute urls to fix broken links in documentation on Pub.

# 2.0.3

* Add MOAR documentation

# 2.0.2

* Add type-safe `combineTypedReducers` and `combineTypedMiddleware` functions
Expand All @@ -50,7 +54,10 @@
# 2.0.0

* *Breaking API Changes:*
* `Reducer` is now a `typedef`. Use `ReducerClass<State>` if you'd like to continue to use a class interface.
* `Middleware` is now a `typedef`. Use `MiddlewareClass<State>` as a replacement for the old `Middleware<State, Action>`
* A `teardown` method has been added. Use it to shut down the store in the middle of your application lifecycle if you no longer need the store.
* `Reducer` is now a `typedef`. Use `ReducerClass<State>` if you'd like to
continue to use a class interface.
* `Middleware` is now a `typedef`. Use `MiddlewareClass<State>` as a
replacement for the old `Middleware<State, Action>`
* A `teardown` method has been added. Use it to shut down the store in the
middle of your application lifecycle if you no longer need the store.
* Added more docs

0 comments on commit 6b42b1c

Please sign in to comment.