diff --git a/CHANGELOG.md b/CHANGELOG.md index f0b2c6f9..9cac681a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.2.0 + +* Add class java.text.Format +* Add class java.text.FieldPosition +* Add class java.text.CharacterIterator +* Add class java.text.AttributedCharacterIterator +* Add class java.text.ParsePosition +* Add class java.text.ParseException + ## 0.1.1 * Cross build and publish to scala 2.10.6, 2.11.8 and 2.12.0-M5 @@ -11,4 +20,4 @@ First release of scala-java-locales: * Partial implementation of Locale, Locale.Category and Locale.Builder classes * Code generation of locales metadata from CLDR code * Partial implementation of DecimalFormatSymbols with CLDR data -* Partial implementation of DateFormatSymbols with CLDR data \ No newline at end of file +* Partial implementation of DateFormatSymbols with CLDR data diff --git a/README.md b/README.md index d2a285f9..e12028de 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Simply add the following line to your sbt settings: ```scala -libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.1.1+29" +libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.2.0+29" ``` If you have a `crossProject`, the setting must be used only in the JS part: @@ -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.1.1+29" + libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.2.0+29" ) ``` @@ -100,4 +100,4 @@ A very simple `Scala.js` project is available at [scalajs-locales-demo](https:// Copyright © 2016 Carlos Quiroz `scala-java-locales` is distributed under the -[BSD 3-Clause license](./LICENSE.txt). \ No newline at end of file +[BSD 3-Clause license](./LICENSE.txt). diff --git a/build.sbt b/build.sbt index 2de2d16f..199ac4bb 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ lazy val downloadFromZip: TaskKey[Unit] = val commonSettings: Seq[Setting[_]] = Seq( cldrVersion := "29", - version := s"0.2.0+${cldrVersion.value}-SNAPSHOT", + version := s"0.2.0+${cldrVersion.value}", organization := "com.github.cquiroz", scalaVersion := "2.11.8", crossScalaVersions := Seq("2.10.4", "2.11.8", "2.12.0-M5"),