Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.13.0-M1 on jawn-0.12.x, fs2-1.0.0-M1 #23

Merged
merged 6 commits into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ object Example extends App {
Add to your build.sbt:

```
libraryDependencies += "org.http4s" %% "jawn-fs2" % "0.12.2"
libraryDependencies += "org.http4s" %% "jawn-fs2" % "0.13.0"

// Pick your AST: https://github.com/non/jawn#supporting-external-asts-with-jawn
libraryDependencies += "org.spire-math" %% "jawn-ast" % "0.12.2"
libraryDependencies += "org.spire-math" %% "jawn-ast" % "0.13.0"
```

## Compatibility matrix

| Stream Library | You need... | Status
| ------------------- | -------------------------------------------- | ------
| fs2-0.10.x | `"org.http4s" %% "jawn-fs2" % "0.12.2"` | stable
| fs2-0.10.x | `"org.http4s" %% "jawn-fs2" % "0.13.0"` | stable
| fs2-0.9.x | `"org.http4s" %% "jawn-fs2" % "0.10.1"` | EOL
| scalaz-stream-0.8a | `"org.http4s" %% "jawn-streamz" % "0.10.1a"` | EOL
| scalaz-stream-0.8.x | `"org.http4s" %% "jawn-streamz" % "0.10.1"` | EOL
Expand Down
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
organization := "org.http4s"
name := "jawn-fs2"

scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.12", "2.12.4")
scalaVersion := "2.12.5"
crossScalaVersions := Seq("2.11.12", scalaVersion.value)

version := s"0.12.2"
version := s"0.13.0"

val JawnVersion = "0.11.1"
val Fs2Version = "0.10.2"
val Specs2Version = "4.0.3"
val JawnVersion = "0.12.1"
val Fs2Version = "0.10.3"
val Specs2Version = "4.1.0"

libraryDependencies ++= Seq(
"org.spire-math" %% "jawn-parser" % JawnVersion,
"co.fs2" %% "fs2-core" % Fs2Version,
"org.spire-math" %% "jawn-ast" % JawnVersion % "test",
"co.fs2" %% "fs2-io" % Fs2Version % "test",
"org.specs2" %% "specs2-core" % "4.0.3" % "test"
"org.spire-math" %% "jawn-ast" % JawnVersion % "test",
"co.fs2" %% "fs2-io" % Fs2Version % "test",
"org.specs2" %% "specs2-core" % Specs2Version % "test",
)

publishTo := Some(
Expand Down