Skip to content
This repository was archived by the owner on Jun 10, 2021. It is now read-only.

Commit c52e95d

Browse files
committed
Upgrade dependencies
1 parent 6b60240 commit c52e95d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "asyncstreams"
22

33
organization := "danslapman"
44

5-
version := "1.0"
5+
version := "1.0.1"
66

77
scalaVersion := "2.12.4"
88

@@ -12,20 +12,20 @@ scalacOptions += "-Ypartial-unification"
1212

1313
parallelExecution in ThisBuild := false
1414

15-
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.5")
15+
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.6")
1616

1717
val versions = Map(
18-
"monix" -> "3.0.0-M3",
18+
"monix" -> "3.0.0-RC1",
1919
"cats" -> "1.0.0"
2020
)
2121

2222
libraryDependencies ++= Seq(
2323
"org.typelevel" %% "cats-core" % versions("cats"),
2424
"org.typelevel" %% "alleycats-core" % versions("cats"),
25-
"org.typelevel" %% "cats-mtl-core" % "0.2.2",
25+
"org.typelevel" %% "cats-mtl-core" % "0.2.3",
2626
"io.monix" %% "monix-eval" % versions("monix") % Test,
27-
"com.twitter" %% "util-core" % "17.11.0" % Test,
28-
"io.catbird" %% "catbird-util" % "0.21.0" % Test,
27+
"com.twitter" %% "util-core" % "18.3.0" % Test,
28+
"io.catbird" %% "catbird-util" % "18.3.0" % Test,
2929
"org.scalatest" %% "scalatest" % "3.0.4" % Test
3030
)
3131

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.0.4
1+
sbt.version = 1.1.1

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1")
1+
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.3")

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ asyncstreams is available via bintray:
2828
```
2929
resolvers += Resolver.bintrayRepo("danslapman", "maven")
3030
31-
libraryDependencies += "danslapman" %% "asyncstreams" % "1.0"
31+
libraryDependencies += "danslapman" %% "asyncstreams" % "1.0.1"
3232
```
3333

3434
asyncstreams initially based on [scala-async](https://github.com/iboltaev/scala-async) ideas.

0 commit comments

Comments
 (0)