Skip to content

Commit d337039

Browse files
committed
Update SBT & Scala 2.12.15. Prepare for release 5.0.2
1 parent a49c283 commit d337039

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
5.0.2
2+
-----
3+
2021-09-18
4+
5+
* Update to Scala 2.13.6 (Thanks cacoco)
6+
* Update to Scala 2.12.15
7+
* Update sbt to improve support for modern scala
8+
19
5.0.1
210
-----
311
2021-05-22

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ We currently support Scala `2.11, 2.12, 2.13`
1414
<dependency>
1515
<groupId>net.codingwell</groupId>
1616
<artifactId>scala-guice_2.13</artifactId>
17-
<version>5.0.1</version>
17+
<version>5.0.2</version>
1818
</dependency>
1919
```
2020

2121
##### sbt:
2222
```scala
23-
"net.codingwell" %% "scala-guice" % "5.0.1"
23+
"net.codingwell" %% "scala-guice" % "5.0.2"
2424
```
2525

2626
##### gradle:
2727
```groovy
28-
'net.codingwell:scala-guice_2.13:5.0.1'
28+
'net.codingwell:scala-guice_2.13:5.0.2'
2929
```
3030

3131
### Mixin

Diff for: build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description := "Scala syntax for Guice"
44

55
organization := "net.codingwell"
66

7-
version := "5.0.1"
7+
version := "5.0.2"
88

99
licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
1010

@@ -25,7 +25,7 @@ autoAPIMappings := true
2525

2626
scalaVersion := "2.13.6"
2727

28-
crossScalaVersions := Seq("2.11.12", "2.12.13", "2.13.6")
28+
crossScalaVersions := Seq("2.11.12", "2.12.15", "2.13.6")
2929

3030
scalacOptions := Seq("-unchecked", "-deprecation", "-feature")
3131

Diff for: project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.7
1+
sbt.version=1.5.5

0 commit comments

Comments
 (0)