Skip to content

Commit c4a9412

Browse files
committed
publishing v0.9.5
1 parent beb5af0 commit c4a9412

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ There are separate artifacts available for these libraries:
2323

2424
```scala
2525
libraryDependencies ++= Seq(
26-
"com.whisk" %% "docker-testkit-scalatest" % "0.9.4" % "test",
27-
"com.whisk" %% "docker-testkit-impl-spotify" % "0.9.4" % "test")
26+
"com.whisk" %% "docker-testkit-scalatest" % "0.9.5" % "test",
27+
"com.whisk" %% "docker-testkit-impl-spotify" % "0.9.5" % "test")
2828
```
2929

3030
**docker-java**
3131

3232
```scala
3333
libraryDependencies ++= Seq(
34-
"com.whisk" %% "docker-testkit-scalatest" % "0.9.4" % "test",
35-
"com.whisk" %% "docker-testkit-impl-docker-java" % "0.9.4" % "test")
34+
"com.whisk" %% "docker-testkit-scalatest" % "0.9.5" % "test",
35+
"com.whisk" %% "docker-testkit-impl-docker-java" % "0.9.5" % "test")
3636
```
3737

3838
You don't necessarily have to use `scalatest` dependency as demonstrated above.

build.sbt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
lazy val commonSettings = Seq(
22
organization := "com.whisk",
3-
version := "0.9.4",
3+
version := "0.9.5",
44
scalaVersion := "2.12.3",
55
crossScalaVersions := Seq("2.12.3", "2.11.11", "2.10.6"),
66
scalacOptions ++= Seq("-feature", "-deprecation"),
77
fork in Test := true,
88
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
99
sonatypeProfileName := "com.whisk",
10+
publishMavenStyle := true,
11+
publishTo := Some(Opts.resolver.sonatypeStaging),
1012
pomExtra in Global := {
1113
<url>https://github.com/whisklabs/docker-it-scala</url>
1214
<scm>

0 commit comments

Comments
 (0)