Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Jun 16, 2017
1 parent 71ce68e commit 729ffe1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ reactify is published to Sonatype OSS and Maven Central currently supporting Sca
Configuring the dependency in SBT simply requires:

```
libraryDependencies += "com.outr" %% "reactify" % "1.6.0"
libraryDependencies += "com.outr" %% "reactify" % "2.0.0"
```

or for Scala.js or cross-building:

```
libraryDependencies += "com.outr" %%% "reactify" % "1.6.0"
libraryDependencies += "com.outr" %%% "reactify" % "2.0.0"
```

## Concepts
Expand Down Expand Up @@ -262,6 +262,20 @@ We need implicits to be able to convert between the two, but now changes to one

## Versions

### Features for 2.0.0 (Released 2017.06.15)

* [X] Complete re-write of internal and recursive state system for better modularity and stability
* [X] Observable builder
* [X] Observable from Future
* [X] RecursionMode to better clarify how hierarchical recursion should work
* [X] Static mode for function-less properties
* [X] None mode for functional but non-recursive
* [X] RetainPreviousValue for single-level recursion (new default for performance)
* [X] Full for complete multi-level recursion
* [X] Transaction system
* [X] Val.dirty and Var.dirty for on-update re-validation of functional reactive properties for performance intensive functionality
* [X] Better recursive integration

### Features for 1.6.0 (Released 2017.06.01)

* [X] Binding support
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "reactify"
organization in ThisBuild := "com.outr"
version in ThisBuild := "2.0.0-SNAPSHOT"
version in ThisBuild := "2.0.0"
scalaVersion in ThisBuild := "2.12.2"
crossScalaVersions in ThisBuild := List("2.12.2", "2.11.11")

Expand Down

0 comments on commit 729ffe1

Please sign in to comment.