From 1044d539424b5fe0bfb0738f0e1f7d45222bc29d Mon Sep 17 00:00:00 2001 From: jose Date: Sat, 17 Feb 2018 14:36:46 -0500 Subject: [PATCH 1/3] update version to m9 --- jwt-sig/src/test/scala/tsec/JWTSigTests.scala | 11 ++++------- project/Dependencies.scala | 6 +++--- .../test/scala/tsec/libsodium/KeyDerivationTest.scala | 1 - 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/jwt-sig/src/test/scala/tsec/JWTSigTests.scala b/jwt-sig/src/test/scala/tsec/JWTSigTests.scala index dc2c3a28..cba78384 100644 --- a/jwt-sig/src/test/scala/tsec/JWTSigTests.scala +++ b/jwt-sig/src/test/scala/tsec/JWTSigTests.scala @@ -1,19 +1,16 @@ package tsec import java.security.Security - -import cats.effect.IO -import tsec.jws.signature._ -import tsec.jwt.algorithms.JWTSigAlgo -import tsec.signature.imports._ - -import scala.concurrent.duration._ import java.time.Instant +import cats.effect.IO import org.bouncycastle.jce.provider.BouncyCastleProvider import org.scalatest.MustMatchers +import tsec.jws.signature._ import tsec.jwt.JWTClaims +import tsec.jwt.algorithms.JWTSigAlgo import tsec.signature.core.KFTag +import tsec.signature.imports._ class JWTSigTests extends TestSpec with MustMatchers { diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 5749386b..d523c967 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -11,12 +11,12 @@ object Dependencies { val bouncyCastleV = "1.58" val sCryptV = "1.4.0" val scalaTestV = "3.0.4" - val http4sV = "0.18.0-M8" + val http4sV = "0.18.0" val scalacheckV = "1.13.5" val commonsCodecV = "1.11" - val fs2Version = "0.10.0-M11" + val fs2Version = "0.10.0" val log4sV = "1.4.0" - val gitHub4s = "0.17.0" + val gitHub4s = "0.18.1" } object Libraries { diff --git a/tsec-libsodium/src/test/scala/tsec/libsodium/KeyDerivationTest.scala b/tsec-libsodium/src/test/scala/tsec/libsodium/KeyDerivationTest.scala index caaf9fc0..3381fe13 100644 --- a/tsec-libsodium/src/test/scala/tsec/libsodium/KeyDerivationTest.scala +++ b/tsec-libsodium/src/test/scala/tsec/libsodium/KeyDerivationTest.scala @@ -1,6 +1,5 @@ package tsec.libsodium -import cats.data.StateT import tsec.common._ import cats.effect.IO import org.scalacheck.Gen From 9cb901f93bfff14f2564dce82301cebe961bac30 Mon Sep 17 00:00:00 2001 From: jose Date: Sat, 17 Feb 2018 14:39:04 -0500 Subject: [PATCH 2/3] update deps --- README.md | 6 +++--- docs/src/main/tut/index.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 405e6429..a0862de5 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ________________________________________ [ ![Latest Version](https://api.bintray.com/packages/jmcardon/tsec/tsec-common/images/download.svg) ](https://bintray.com/jmcardon/tsec/tsec-common/_latestVersion) -### Latest Release: 0.0.1-M7 +### Latest Release: 0.0.1-M9 For the current progress, please refer to the [RoadMap](https://github.com/jmcardon/tsec/wiki) @@ -35,7 +35,7 @@ internals shift as we find better/more performant abstractions. We will guarantee compatibility between minor versions (i.e 0.0.1 => 0.0.2) but not major versions (0.0.1 => 0.1.0) -0.0.1-M7 is here for scala 2.12+ and Cats 1.0.0-RC2! +0.0.1-M9 is here for scala 2.12+ and Cats 1.0.1! To get started, if you are on sbt 0.13.16+, add @@ -65,7 +65,7 @@ resolvers += Resolver.bintrayRepo("jmcardon", "tsec") To include any of these packages in your project use: ```scala -val tsecV = "0.0.1-M7" +val tsecV = "0.0.1-M9" libraryDependencies ++= Seq( "io.github.jmcardon" %% "tsec-common" % tsecV, "io.github.jmcardon" %% "tsec-password" % tsecV, diff --git a/docs/src/main/tut/index.md b/docs/src/main/tut/index.md index 6a07cb63..b41c7d29 100644 --- a/docs/src/main/tut/index.md +++ b/docs/src/main/tut/index.md @@ -37,7 +37,7 @@ internals shift as we find better/more performant abstractions. We will guarantee compatibility between minor versions (i.e 0.0.1 => 0.0.2) but not major versions (0.0.1 => 0.1.0) -0.0.1-M8 is here for scala 2.12+ and Cats 1.0.1! +0.0.1-M9 is here for scala 2.12+ and Cats 1.0.1! To get started, if you are on sbt 0.13.16+, add @@ -67,7 +67,7 @@ resolvers += Resolver.bintrayRepo("jmcardon", "tsec") To include any of these packages in your project use: ```scala -val tsecV = "0.0.1-M8" +val tsecV = "0.0.1-M9" libraryDependencies ++= Seq( "io.github.jmcardon" %% "tsec-common" % tsecV, "io.github.jmcardon" %% "tsec-password" % tsecV, From 6fd6977e0735d73fbe5ca6c5952df9f32f5e97c5 Mon Sep 17 00:00:00 2001 From: jose Date: Sat, 17 Feb 2018 14:41:57 -0500 Subject: [PATCH 3/3] update build.sbt --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e0385cc7..141f6f2e 100644 --- a/build.sbt +++ b/build.sbt @@ -47,7 +47,7 @@ lazy val commonSettings = Seq( fork in test := true, parallelExecution in test := false, addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.5"), - version in ThisBuild := "0.0.1-M8", + version in ThisBuild := "0.0.1-M9", scalacOpts )