Skip to content

Commit

Permalink
bump to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erikerlandson committed May 7, 2019
1 parent 6e586d6 commit 18d3888
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ package is also a dependency, but is included transitively via `spire`.
resolvers += "manyangled" at "https://dl.bintray.com/manyangled/maven/"

libraryDependencies ++= Seq(
"com.manyangled" %% "coulomb" % "0.3.0",
"com.manyangled" %% "coulomb" % "0.3.1",
"org.typelevel" %% "spire" % "0.16.1",
"eu.timepit" %% "singleton-ops" % "0.3.1"
)
Expand All @@ -40,13 +40,13 @@ separate sub-packages.

```scala
libraryDependencies ++= Seq(
"com.manyangled" %% "coulomb-si-units" % "0.3.0", // The seven SI units: meter, second, kilogram, etc
"com.manyangled" %% "coulomb-accepted-units" % "0.3.0", // Common non-SI metric: liter, centimeter, gram, etc
"com.manyangled" %% "coulomb-time-units" % "0.3.0", // minute, hour, day, week
"com.manyangled" %% "coulomb-info-units" % "0.3.0", // bit, byte, nat
"com.manyangled" %% "coulomb-mks-units" % "0.3.0", // MKS units: Joule, Newton, Watt, Volt, etc
"com.manyangled" %% "coulomb-customary-units" % "0.3.0", // non-metric units: foot, mile, pound, gallon, pint, etc
"com.manyangled" %% "coulomb-temp-units" % "0.3.0" // Celsius and Fahrenheit temperature scales
"com.manyangled" %% "coulomb-si-units" % "0.3.1", // The seven SI units: meter, second, kilogram, etc
"com.manyangled" %% "coulomb-accepted-units" % "0.3.1", // Common non-SI metric: liter, centimeter, gram, etc
"com.manyangled" %% "coulomb-time-units" % "0.3.1", // minute, hour, day, week
"com.manyangled" %% "coulomb-info-units" % "0.3.1", // bit, byte, nat
"com.manyangled" %% "coulomb-mks-units" % "0.3.1", // MKS units: Joule, Newton, Watt, Volt, etc
"com.manyangled" %% "coulomb-customary-units" % "0.3.1", // non-metric units: foot, mile, pound, gallon, pint, etc
"com.manyangled" %% "coulomb-temp-units" % "0.3.1" // Celsius and Fahrenheit temperature scales
)
```

Expand All @@ -56,16 +56,16 @@ used for extending standard configuration systems with type-safe unit quantities

```scala
libraryDependencies ++= Seq(
"com.manyangled" %% "coulomb-parser" % "0.3.0", // QuantityParser
"com.manyangled" %% "coulomb-parser" % "0.3.1", // QuantityParser
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.1" // %Provided parser dependency
)
```

The package `coulomb-typesafe-config` provides an integration of unit parsing with the Typesafe Config.
```scala
libraryDependencies ++= Seq(
"com.manyangled" %% "coulomb-typesafe-config" % "0.3.0"
"com.manyangled" %% "coulomb-parser" % "0.3.0",
"com.manyangled" %% "coulomb-typesafe-config" % "0.3.1"
"com.manyangled" %% "coulomb-parser" % "0.3.1",
"com.typesafe" % "config" % "1.3.3",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.1"
)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

def commonSettings = Seq(
organization := "com.manyangled",
version := "0.3.1-SNAPSHOT",
version := "0.3.1",
scalaVersion := "2.13.0-M5",
crossScalaVersions := Seq("2.13.0-M5"),
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
Expand Down

0 comments on commit 18d3888

Please sign in to comment.