Skip to content

Commit

Permalink
Set version for release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cquiroz committed Jul 24, 2016
1 parent 92cb107 commit ac98208
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.3.0

Provides minimal implementation of DateFormat for scala-java-time

* Add basic implementation java.text.NumberFormat
* Add basic implementation java.text.DateFormat
* Add basic implementation java.text.SimpleDateFormat

## 0.2.0

* Add class java.text.Format
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Simply add the following line to your sbt settings:

```scala
libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.2.0+29"
libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.3.0+29"
```

If you have a `crossProject`, the setting must be used only in the JS part:
Expand All @@ -19,7 +19,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
lazy val myCross = crossProject.
...
.jsSettings(
libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.2.0+29"
libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.3.0+29"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val downloadFromZip: TaskKey[Unit] =

val commonSettings: Seq[Setting[_]] = Seq(
cldrVersion := "29",
version := s"0.3.0+${cldrVersion.value}-SNAPSHOT",
version := s"0.3.0+${cldrVersion.value}",
organization := "com.github.cquiroz",
scalaVersion := "2.11.8",
crossScalaVersions := Seq("2.10.4", "2.11.8", "2.12.0-M5"),
Expand Down

0 comments on commit ac98208

Please sign in to comment.