Skip to content

Commit

Permalink
bumped version to 0.9.2, add changes for this version
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarikx committed Oct 11, 2016
1 parent 96f7aca commit 18fcaaf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Reductor Releases #

### Version 0.9.2 - October 11, 2016
#### New Features
- Big update on `@CombinedState`.
Now `@AutoValue` value classes are supported as combined state!
Interfaces as combined state are still supported.

#### Other improvements
Update code generator for `@CombinedState` reducers.
- Remove unnecessary state object allocation if all sub-states are the same.
- Use boxed version of sub-state types in reducer, to remove boxing/unboxing when passing to sub-reducers.

### Version 0.9.1 - October 10, 2016
- Rename `reductor-rx` maven artifact to `reductor-rxjava`
- Updated `rxjava` version to 1.2.1
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
project.ext {
bintrayUser = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : ""
bintrayKey = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : ""
reductorVersion = '0.9.1'
reductorVersion = '0.9.2'
}


Expand Down

0 comments on commit 18fcaaf

Please sign in to comment.