Skip to content

Commit

Permalink
Merge pull request #241 from cquiroz/release-1.3
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
cquiroz authored May 25, 2017
2 parents 853b609 + d4fa4a8 commit 8be8ffb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
Expand All @@ -50,7 +50,7 @@ To use Squants in your Maven project add the following dependency
<dependency>
<groupId>org.typelevel</groupId>
<artifactId>squants_2.11</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
14 changes: 7 additions & 7 deletions shared/src/main/tut/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
Expand All @@ -50,7 +50,7 @@ To use Squants in your Maven project add the following dependency
<dependency>
<groupId>org.typelevel</groupId>
<artifactId>squants_2.11</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

Expand Down

0 comments on commit 8be8ffb

Please sign in to comment.