Skip to content

Commit f9216d5

Browse files
committed
update readme for 0.2.4 release
1 parent 46ffa65 commit f9216d5

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,19 @@ and give the user different backoff strategies.
1717
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.hipjim/scala-retry_2.12/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.hipjim/scala-retry_2.12)
1818

1919
```scala
20-
libraryDependencies += "com.github.hipjim" % "scala-retry_2.12" % "0.2.3"
20+
libraryDependencies += "com.github.hipjim" % "scala-retry_2.12" % "0.2.4"
2121
```
2222

2323
```xml
2424
<dependency>
2525
<groupId>com.github.hipjim</groupId>
2626
<artifactId>scala-retry_2.12</artifactId>
27-
<version>0.2.3</version>
27+
<version>0.2.4</version>
2828
</dependency>
2929
```
3030

31+
Versions for ```Scala 2.11``` and ```Scala 2.12``` are available.
32+
3133
## Tutorial
3234

3335
```scala

build.sbt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ organization := "com.github.hipjim"
44

55
crossScalaVersions := Seq("2.10.6", "2.11.10", "2.12.7")
66

7-
version := "0.2.3"
7+
version := "0.2.4"
88

99
scalaVersion := "2.12.7"
1010

@@ -23,11 +23,7 @@ scalacOptions ++= Seq(
2323
// Features enabled by default
2424
"-language:higherKinds",
2525
"-language:implicitConversions",
26-
"-language:experimental.macros",
27-
// possibly deprecated options
28-
"-Ywarn-inaccessible",
29-
// absolutely necessary for Iterant
30-
"-Ypartial-unification"
26+
"-language:experimental.macros"
3127
)
3228

3329
// Targeting Java 6, but only for Scala <= 2.11

0 commit comments

Comments
 (0)