Skip to content

Commit 45c6334

Browse files
committed
Upgrade to Guice 5.0.1
1 parent dbf3ffb commit 45c6334

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
5.0.0
2+
-----
3+
2021-03-08
4+
5+
* Update Guice to 5.0.1
6+
17
4.2.11
28
------
39
2020-07-12

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>4.2.11</version>
17+
<version>5.0.0</version>
1818
</dependency>
1919
```
2020

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

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

3131
### Mixin

build.sbt

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

55
organization := "net.codingwell"
66

7-
version := "4.2.11"
7+
version := "5.0.0"
88

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

1111
homepage := Some(url("https://github.com/codingwell/scala-guice"))
1212

1313
libraryDependencies ++= Seq(
14-
"com.google.inject" % "guice" % "4.2.3",
14+
"com.google.inject" % "guice" % "5.0.1",
1515
"org.scala-lang" % "scala-reflect" % scalaVersion.value
1616
)
1717

@@ -23,7 +23,7 @@ autoAPIMappings := true
2323

2424
scalaVersion := "2.11.12"
2525

26-
crossScalaVersions := Seq("2.11.12", "2.12.11", "2.13.2")
26+
crossScalaVersions := Seq("2.11.12", "2.12.13", "2.13.5")
2727

2828
scalacOptions := Seq("-unchecked", "-deprecation", "-feature")
2929

0 commit comments

Comments
 (0)