Skip to content

Commit 58e3ab7

Browse files
committed
Prepare for release v5.1.0
1 parent f448e0f commit 58e3ab7

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
5.1.0
2+
-----
3+
2022-05-26
4+
5+
* Update Guice 5.1.0
6+
* Update to Scala 2.13.8
7+
18
5.0.2
29
-----
310
2021-09-18

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Scala extensions for Google Guice 5.0
1+
Scala extensions for Google Guice 5.1
22
=====================================
33

44
**Develop:** [![Build Status](https://travis-ci.org/codingwell/scala-guice.png?branch=develop)](https://travis-ci.org/codingwell/scala-guice)
@@ -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.2</version>
17+
<version>5.1.0</version>
1818
</dependency>
1919
```
2020

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

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

3131
### Mixin

build.sbt

Lines changed: 3 additions & 3 deletions
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.2"
7+
version := "5.1.0"
88

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

@@ -23,9 +23,9 @@ libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "
2323

2424
autoAPIMappings := true
2525

26-
scalaVersion := "2.13.6"
26+
scalaVersion := "2.13.8"
2727

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

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

0 commit comments

Comments
 (0)