Skip to content

Commit 8fbcb62

Browse files
committed
Version 1.0.0.
1 parent 964464c commit 8fbcb62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ of JDK8 for Scala.js. It enables this API in Scala.js projects.
1212
Simply add the following line to your sbt settings:
1313

1414
```scala
15-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.6"
15+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "1.0.0"
1616
```
1717

1818
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -21,7 +21,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2121
lazy val myCross = crossProject
2222
...
2323
.jsSettings(
24-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.6"
24+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "1.0.0"
2525
)
2626
```
2727

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ crossScalaVersions in ThisBuild := {
1010
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
1111

1212
val commonSettings: Seq[Setting[_]] = Seq(
13-
version := "0.2.7-SNAPSHOT",
13+
version := "1.0.0",
1414
organization := "org.scala-js",
1515
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
1616

0 commit comments

Comments
 (0)