Skip to content

Commit

Permalink
Versions up
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentinov Aleksandr Aleksandrovich committed May 21, 2020
1 parent 2404de2 commit 096b581
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Scala 2.12 and 2.13 are supported. Support for Scala 2.11 may be implemented on
Add phobos-core to your dependencies:

```
libraryDependencies += "ru.tinkoff" %% "phobos-core" % "0.6.0"
libraryDependencies += "ru.tinkoff" %% "phobos-core" % "0.7.0"
```

Then try this code out in `sbt console` or in a separate source file:
Expand Down Expand Up @@ -67,7 +67,7 @@ Performance details can be found out in [phobos-benchmark repository](https://gi
There are several additional modules for some specific cases.
These modules could be added with command below:
```
libraryDependencies += "ru.tinkoff" %% "phobos-<module>" % "0.6.0"
libraryDependencies += "ru.tinkoff" %% "phobos-<module>" % "0.7.0"
```
Where `<module>` is module name.

Expand All @@ -79,6 +79,7 @@ Where `<module>` is module name.
| enumeratum | Support for [enumeratum](https://github.com/lloydmeta/enumeratum#manual-override-of-name) enums |
| fs2 | Streaming decoding support (`Stream[F, Array[Byte]] => G[A]`) |
| monix | Streaming decoding support (`Observable[Array[Byte]] => Task[A]`) |
| refined | Support for [refined](https://github.com/fthomas/refined) |

## XSD and WSDL code-generation support
It will be soon implemented in [deimos](https://github.com/TinkoffCreditSystems/deimos) library.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ lazy val commonDependencies =
"org.typelevel" %% "cats-core" % "2.1.1",
"com.fasterxml" % "aalto-xml" % "1.2.2",
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalactic" %% "scalactic" % "3.1.1" % "test",
"org.scalatest" %% "scalatest" % "3.1.1" % "test",
"org.scalactic" %% "scalactic" % "3.1.2" % "test",
"org.scalatest" %% "scalatest" % "3.1.2" % "test",
)

def onScalaVersion[B](`on-2-12`: => B, `on-2-13`: => B): Def.Initialize[B] =
Expand Down
4 changes: 2 additions & 2 deletions modules/akka-http/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % "2.6.4" % "provided",
"com.typesafe.akka" %% "akka-http" % "10.1.11",
"com.typesafe.akka" %% "akka-stream" % "2.6.5" % "provided",
"com.typesafe.akka" %% "akka-http" % "10.1.12",
)
4 changes: 2 additions & 2 deletions modules/akka-stream/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % "2.6.4",
"com.typesafe.akka" %% "akka-testkit" % "2.6.4" % Test
"com.typesafe.akka" %% "akka-stream" % "2.6.5",
"com.typesafe.akka" %% "akka-testkit" % "2.6.5" % Test
)
2 changes: 1 addition & 1 deletion modules/derevo/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libraryDependencies ++= Seq(
"org.manatki" %% "derevo-core" % "0.11.0",
"org.manatki" %% "derevo-core" % "0.11.3",
)
2 changes: 1 addition & 1 deletion modules/enumeratum/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libraryDependencies ++= Seq(
"com.beachape" %% "enumeratum" % "1.5.15",
"com.beachape" %% "enumeratum" % "1.6.1",
)
2 changes: 1 addition & 1 deletion modules/monix/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libraryDependencies ++= Seq(
"io.monix" %% "monix" % "3.1.0"
"io.monix" %% "monix" % "3.2.1"
)
2 changes: 1 addition & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Publish._

publishVersion := "0.6.0"
publishVersion := "0.7.0"

ThisBuild / organization := "ru.tinkoff"
ThisBuild / version := {
Expand Down

0 comments on commit 096b581

Please sign in to comment.