Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
Merge pull request #118 from jmcardon/0.0.1-M9
Browse files Browse the repository at this point in the history
Release 0.0.1 m9
  • Loading branch information
jmcardon authored Feb 17, 2018
2 parents 71d9d52 + 8e6101b commit 612bc5f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-M8
### Latest Release: 0.0.1-M9

For the current progress, please refer to the [RoadMap](https://github.com/jmcardon/tsec/wiki)

Expand Down Expand Up @@ -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-M8"
val tsecV = "0.0.1-M9"
libraryDependencies ++= Seq(
"io.github.jmcardon" %% "tsec-common" % tsecV,
"io.github.jmcardon" %% "tsec-password" % tsecV,
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/tut/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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,
Expand Down
11 changes: 4 additions & 7 deletions jwt-sig/src/test/scala/tsec/JWTSigTests.scala
Original file line number Diff line number Diff line change
@@ -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 {

Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package tsec.libsodium

import cats.data.StateT
import tsec.common._
import cats.effect.IO
import org.scalacheck.Gen
Expand Down

0 comments on commit 612bc5f

Please sign in to comment.