@@ -58,8 +58,8 @@ Both Scala 2.11 and Scala 2.12 (2.0.0-M8 and later) are supported.
5858
5959To get started with SBT, add one of these dependencies:
6060
61- * ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M13 " ` (for Scala)
62- * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M13 " ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
61+ * ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-RC1 " ` (for Scala)
62+ * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-RC1 " ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
6363
6464To get the latest snapshots add the repo
6565
@@ -70,8 +70,8 @@ resolvers +=
7070
7171and either:
7272
73- * ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M14 -SNAPSHOT" ` (for Scala)
74- * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M14 -SNAPSHOT" ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
73+ * ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-RC2 -SNAPSHOT" ` (for Scala)
74+ * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-RC2 -SNAPSHOT" ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
7575
7676### Time zones
7777
@@ -84,7 +84,7 @@ If you don't need to use timezones in your application you can just stop here. B
8484The timezone for js is provided in a separate bundle which contains all time zones available from
8585[ IANA Time Zone Database] ( https://www.iana.org/time-zones ) . To use them you need to add the following dependency
8686
87- * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time-tzdb" % "2.0.0-M13_2018c " ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
87+ * ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time-tzdb" % "2.0.0-RC1_2018f " ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
8888
8989Note that the db is fairly large and due to the characteristics of the API it's not very ammenable to optimization
9090This database is published every now and then so it maybe old. For current version see the following section.
@@ -101,7 +101,7 @@ To do that you need to:
101101* Add ` sbt-tzdb ` to your list of plugins (Note you need sbt 1.x)
102102
103103``` scala
104- addSbtPlugin(" io.github.cquiroz" % " sbt-tzdb" % " 0.1.2 " )
104+ addSbtPlugin(" io.github.cquiroz" % " sbt-tzdb" % " 0.3.1 " )
105105```
106106
107107* Enable the plugin for your ` Scala.js ` project:
@@ -154,7 +154,7 @@ Have a look at the [issues](https://github.com/cquiroz/scala-java-time/issues) o
154154
155155##### 2.0
156156
157- A stable release of 2.0 will be published with only ` java.time ` on its binary after a (hopefully) short RC phase .
157+ A stable release of 2.0 will be published with only ` java.time ` on its binary after RC-2 is published .
158158
159159#### FAQs
160160
0 commit comments