@@ -58,8 +58,8 @@ Both Scala 2.11 and Scala 2.12 (2.0.0-M8 and later) are supported.
58
58
59
59
To get started with SBT, add one of these dependencies:
60
60
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)
63
63
64
64
To get the latest snapshots add the repo
65
65
@@ -70,8 +70,8 @@ resolvers +=
70
70
71
71
and either:
72
72
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)
75
75
76
76
### Time zones
77
77
@@ -84,7 +84,7 @@ If you don't need to use timezones in your application you can just stop here. B
84
84
The timezone for js is provided in a separate bundle which contains all time zones available from
85
85
[ IANA Time Zone Database] ( https://www.iana.org/time-zones ) . To use them you need to add the following dependency
86
86
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)
88
88
89
89
Note that the db is fairly large and due to the characteristics of the API it's not very ammenable to optimization
90
90
This 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:
101
101
* Add ` sbt-tzdb ` to your list of plugins (Note you need sbt 1.x)
102
102
103
103
``` scala
104
- addSbtPlugin(" io.github.cquiroz" % " sbt-tzdb" % " 0.1.2 " )
104
+ addSbtPlugin(" io.github.cquiroz" % " sbt-tzdb" % " 0.3.1 " )
105
105
```
106
106
107
107
* 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
154
154
155
155
##### 2.0
156
156
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 .
158
158
159
159
#### FAQs
160
160
0 commit comments