diff --git a/README.md b/README.md index 5873eec..33b022a 100644 --- a/README.md +++ b/README.md @@ -21,20 +21,20 @@ Sri (Scala React interface) is a scalajs library to build truly native cross pla Use this module to build iOS/Android mobile applications: ```scala -libraryDependencies += "com.github.chandu0101.sri" %%% "mobile" % "0.2.0" +libraryDependencies += "com.github.chandu0101.sri" %%% "mobile" % "0.3.0" ``` #Web Use this module to build browser based applications: ```scala -libraryDependencies += "com.github.chandu0101.sri" %%% "web" % "0.2.0" +libraryDependencies += "com.github.chandu0101.sri" %%% "web" % "0.3.0" ``` #Relay Use this module to add relay support to your applications: ```scala -libraryDependencies += "com.github.chandu0101.sri" %%% "relay" % "0.2.0" +libraryDependencies += "com.github.chandu0101.sri" %%% "relay" % "0.3.0" ``` #Documentation - [Sri Internals](/docs/SriInternals.md) diff --git a/changelog/CHANGE_LOG_0.3.0.md b/changelog/CHANGE_LOG_0.3.0.md index 6184f1c..10497b6 100644 --- a/changelog/CHANGE_LOG_0.3.0.md +++ b/changelog/CHANGE_LOG_0.3.0.md @@ -1,4 +1,4 @@ -# ChangeLog 0.3.0(WIP) +# ChangeLog 0.3.0 # Universal @@ -7,7 +7,7 @@ # Mobile -Added `fastOptMobile` task, but we need [this one line fix](https://github.com/facebook/react-native/pull/4830/files) for now - @mariussoutier +Added `fastOptMobile` task, but we need [this one line fix](https://github.com/facebook/react-native/pull/4830/files) for now - @mariussoutier thanks alot for the fix :) Upgrade to react-native [0.19.0](https://github.com/facebook/react-native/releases/tag/v0.19.0) diff --git a/docs/ReleaseCheckList.md b/docs/ReleaseCheckList.md index 987c720..f568b8c 100644 --- a/docs/ReleaseCheckList.md +++ b/docs/ReleaseCheckList.md @@ -7,4 +7,6 @@ * [ ] update app templates -* [ ] remove SNAPSHOT tags \ No newline at end of file +* [ ] remove SNAPSHOT tags + +* [ ] update version numbers of modules in README \ No newline at end of file diff --git a/project/Build.scala b/project/Build.scala index 0a45b70..3d70b92 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -14,7 +14,7 @@ object Sri extends Build { lazy val commonSettings = Seq( organization := "com.github.chandu0101.sri", - version := "0.3.0-SNAPSHOT", + version := "0.3.0", homepage := Some(url("https://github.com/chandu0101/sri")), licenses +=("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211,