From 18d38887cc49f02dece1288f693e2009639e59bd Mon Sep 17 00:00:00 2001 From: Erik Erlandson Date: Mon, 6 May 2019 18:27:07 -0700 Subject: [PATCH] bump to 0.3.1 --- README.md | 22 +++++++++++----------- build.sbt | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5a57e0c51..475023884 100644 --- a/README.md +++ b/README.md @@ -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" ) @@ -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 ) ``` @@ -56,7 +56,7 @@ 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 ) ``` @@ -64,8 +64,8 @@ libraryDependencies ++= Seq( 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" ) diff --git a/build.sbt b/build.sbt index 3ebe5d576..eef46befd 100644 --- a/build.sbt +++ b/build.sbt @@ -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")),