diff --git a/README.md b/README.md index 35de04bb..d99b41b1 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ All types are immutable and thread-safe. ### Current Versions -Current Release: **1.2.0** -([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/org/typelevel/squants_2.11/1.2.0/squants_2.11-1.2.0-javadoc.jar/!/index.html#squants.package)) +Current Release: **1.3.0** +([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/org/typelevel/squants_2.11/1.3.0/squants_2.11-1.3.0-javadoc.jar/!/index.html#squants.package)) -Development Build: **1.3.0-SNAPSHOT** -([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/org/typelevel/squants_2.11/1.3.0-SNAPSHOT/squants_2.11-1.3.0-SNAPSHOT-javadoc.jar/!/index.html#squants.package)) +Development Build: **1.4.0-SNAPSHOT** +([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/org/typelevel/squants_2.11/1.4.0-SNAPSHOT/squants_2.11-1.4.0-SNAPSHOT-javadoc.jar/!/index.html#squants.package)) [Release History](https://github.com/typelevel/squants/wiki/Release-History) @@ -38,10 +38,10 @@ For more information on feature availability of a specific version see the Relea Repository hosting for Squants is provided by [Sonatype](https://oss.sonatype.org/). To use Squants in your SBT project add the following dependency to your build. - "org.typelevel" %% "squants" % "1.2.0" + "org.typelevel" %% "squants" % "1.3.0" or - "org.typelevel" %% "squants" % "1.3.0-SNAPSHOT" + "org.typelevel" %% "squants" % "1.4.0-SNAPSHOT" To use Squants in your Maven project add the following dependency @@ -50,7 +50,7 @@ To use Squants in your Maven project add the following dependency org.typelevel squants_2.11 - 1.2.0 + 1.3.0 ``` @@ -586,7 +586,7 @@ rate2: squants.market.CurrencyExchangeRate = USD/JPY 100.0 scala> // OR | val rate3 = JPY(100) -> USD(1) -rate3: squants.market.CurrencyExchangeRate = USD/JPY 100.0 +rate3: (squants.market.Money, squants.market.Money) = (100.0 JPY,1.0 USD) scala> // OR | val rate4 = JPY(100) toThe USD(1) @@ -1019,7 +1019,7 @@ import squants.space._ import squants.experimental.unitgroups.UnitGroup // import squants.experimental.unitgroups.UnitGroup -val usCookingUnitGroup = new UnitGroup[Volume] { +val usCookingUnitGroup = new UnitGroup[Volume] { // units don't have to be specified in-order. val units: Set[UnitOfMeasure[Volume]] = Set(UsPints, UsGallons, Teaspoons, Tablespoons, UsQuarts, FluidOunces) } diff --git a/project/Build.scala b/project/Build.scala index d3c0aab6..e80ac009 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -5,7 +5,7 @@ import com.typesafe.sbt.osgi.SbtOsgi import com.typesafe.sbt.osgi.SbtOsgi.autoImport._ object Versions { - val Squants = "1.3.0-SNAPSHOT" + val Squants = "1.3.0" val Scala = "2.11.11" val ScalaCross = Seq("2.12.2", "2.11.11", "2.10.6") diff --git a/shared/src/main/tut/README.md b/shared/src/main/tut/README.md index 61f3384c..118061b8 100644 --- a/shared/src/main/tut/README.md +++ b/shared/src/main/tut/README.md @@ -21,11 +21,11 @@ All types are immutable and thread-safe. ### Current Versions -Current Release: **1.2.0** -([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/org/typelevel/squants_2.11/1.2.0/squants_2.11-1.2.0-javadoc.jar/!/index.html#squants.package)) +Current Release: **1.3.0** +([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/org/typelevel/squants_2.11/1.3.0/squants_2.11-1.3.0-javadoc.jar/!/index.html#squants.package)) -Development Build: **1.3.0-SNAPSHOT** -([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/org/typelevel/squants_2.11/1.3.0-SNAPSHOT/squants_2.11-1.3.0-SNAPSHOT-javadoc.jar/!/index.html#squants.package)) +Development Build: **1.4.0-SNAPSHOT** +([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/org/typelevel/squants_2.11/1.4.0-SNAPSHOT/squants_2.11-1.4.0-SNAPSHOT-javadoc.jar/!/index.html#squants.package)) [Release History](https://github.com/typelevel/squants/wiki/Release-History) @@ -38,10 +38,10 @@ For more information on feature availability of a specific version see the Relea Repository hosting for Squants is provided by [Sonatype](https://oss.sonatype.org/). To use Squants in your SBT project add the following dependency to your build. - "org.typelevel" %% "squants" % "1.2.0" + "org.typelevel" %% "squants" % "1.3.0" or - "org.typelevel" %% "squants" % "1.3.0-SNAPSHOT" + "org.typelevel" %% "squants" % "1.4.0-SNAPSHOT" To use Squants in your Maven project add the following dependency @@ -50,7 +50,7 @@ To use Squants in your Maven project add the following dependency org.typelevel squants_2.11 - 1.2.0 + 1.3.0 ```