Skip to content

Commit

Permalink
version ++
Browse files Browse the repository at this point in the history
  • Loading branch information
loicdescotte committed Apr 15, 2018
1 parent 88497b1 commit 01c1639
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -28,7 +28,7 @@ With SBT :

```scala
libraryDependencies ++= Seq(
"io.github.scala-hamsters" %% "hamsters" % "2.5.0"
"io.github.scala-hamsters" %% "hamsters" % "2.6.0"
)
```

Expand All @@ -38,15 +38,15 @@ With Maven :
<dependency>
<groupId>io.github.scala-hamsters</groupId>
<artifactId>hamsters_${scala.version}</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
```

For Scala.js :

```scala
libraryDependencies ++= Seq(
"io.github.scala-hamsters" %%% "hamsters" % "2.5.0"
"io.github.scala-hamsters" %%% "hamsters" % "2.6.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -2,7 +2,7 @@ import sbt.Keys._
import sbtcrossproject.{crossProject, CrossType}
val buildSettings = Defaults.coreDefaultSettings ++ Seq(
organization := "io.github.scala-hamsters",
version := "2.5.0",
version := "2.6.0",
scalacOptions ++= Seq(),
scalacOptions in(Compile, doc) := Seq("-groups", "-implicits"),
publishMavenStyle := true,
Expand Down
3 changes: 2 additions & 1 deletion scripts/try-hamsters.sh
Expand Up @@ -4,10 +4,11 @@ test -e ~/.coursier/coursier || \
(mkdir -p ~/.coursier && curl -L -s --output ~/.coursier/coursier $COURSIER_URL && chmod +x ~/.coursier/coursier)
~/.coursier/coursier launch -q -P \
com.lihaoyi:ammonite_2.12.3:1.0.1 \
io.github.scala-hamsters:hamsters_2.12:2.5.0 \
io.github.scala-hamsters:hamsters_2.12:2.6.0 \
-- --predef-code 'import io.github.hamsters._;
import HList._;
import EmptyOptionValues._;
import FutureOps._;
import Validation._;
import Retry._;
import scala.concurrent.Future' < /dev/tty

0 comments on commit 01c1639

Please sign in to comment.