Skip to content

Commit

Permalink
Merge pull request #46 from cquiroz/release-0.2.0
Browse files Browse the repository at this point in the history
Updates for release 0.2.0
  • Loading branch information
cquiroz authored Jul 12, 2016
2 parents bcf35ad + 1a0d6cc commit 84f36ed
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
* Partial implementation of DateFormatSymbols with CLDR data
6 changes: 3 additions & 3 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.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:
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.1.1+29"
libraryDependencies += "com.github.cquiroz" %%% "scala-java-locales" % "0.2.0+29"
)
```

Expand Down Expand Up @@ -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).
[BSD 3-Clause license](./LICENSE.txt).
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.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"),
Expand Down

0 comments on commit 84f36ed

Please sign in to comment.