Skip to content

Commit 8a11624

Browse files
authored
Merge pull request #58 from cquiroz/release-2.0.0-M11
Release 2.0.0-M11
2 parents 47a2ce8 + dccbe6a commit 8a11624

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Both Scala 2.11 and Scala 2.12 (2.12.0-M7 and later) are supported.
1515

1616
To get started with SBT, add one (or both) of these dependencies:
1717

18-
- `libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M10"` (for Scala)
19-
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M10` (for Scala.js, [Scala.js plugin](http://www.scala-js.org/tutorial/basic/#sbt-setup) required)
18+
- `libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M11"` (for Scala)
19+
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M11` (for Scala.js, [Scala.js plugin](http://www.scala-js.org/tutorial/basic/#sbt-setup) required)
2020

2121
#### Documentation
2222

RELEASE-NOTES.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val downloadFromZip: TaskKey[Unit] =
1010
lazy val commonSettings = Seq(
1111
name := "scala-java-time",
1212
description := "java.time API implementation in Scala and Scala.js",
13-
version := "2.0.0-M10",
13+
version := "2.0.0-M11",
1414
organization := "io.github.cquiroz",
1515
homepage := Some(url("https://github.com/cquiroz/scala-java-time")),
1616
licenses := Seq("BSD 3-Clause License" -> url("https://opensource.org/licenses/BSD-3-Clause")),
@@ -61,11 +61,12 @@ lazy val root = project.in(file("."))
6161
.aggregate(scalajavatimeJVM, scalajavatimeJS)
6262
.settings(commonSettings: _*)
6363
.settings(
64-
name := "scalajavatime",
64+
name := "scala-java-time",
6565
// No, SBT, we don't want any artifacts for root.
6666
// No, not even an empty jar.
6767
publish := {},
6868
publishLocal := {},
69+
publishArtifact := false,
6970
Keys.`package` := file(""))
7071

7172
lazy val tzDbSettings = Seq(

docs/src/main/tut/index.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Both Scala 2.11 and Scala 2.12 (2.12.0-M8 and later) are supported.
6060

6161
To get started with SBT, add one (or both) of these dependencies:
6262

63-
- `libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M10"` (for Scala)
64-
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M10"` (for Scala.js, [Scala.js plugin](http://www.scala-js.org/tutorial/basic/#sbt-setup) required)
63+
- `libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M11"` (for Scala)
64+
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M11"` (for Scala.js, [Scala.js plugin](http://www.scala-js.org/tutorial/basic/#sbt-setup) required)
6565

6666
#### Building
6767
This project builds using sbt.
@@ -70,14 +70,13 @@ Run `sbt scalajavatimeCrossJVM/test` to run the test suite on the JVM and
7070

7171
#### Status
7272

73-
Most parts of this library work perfectly fine with Scala.js in the browser.
73+
All parts of this library work perfectly fine with Scala.js in the browser.
7474

7575
#### Contributing
7676

7777
We welcome all contributions, including ideas, suggestions, bug reports, bug fixes and code!
7878
We are especially interested in contributions that tackle the following issues:
7979

80-
* Complete the port of tests to scalatest
8180
* Modularize the tzdb database
8281
* Find ways to reduce the size of the library
8382

@@ -87,8 +86,6 @@ Have a look at the [issues](https://github.com/cquiroz/scala-java-time/issues) o
8786

8887
##### 2.0
8988

90-
We will keep releasing milestone builds while work on the remaining bits and pieces to support 100% of this library on Scala.js is ongoing (most parts work fine already).
91-
9289
The current version is published containing the code in both packages: `org.threeten.bp` and `java.time`.
9390

9491
A stable release of 2.0 will be published after a (hopefully) short RC phase.

0 commit comments

Comments
 (0)