From 29f3eb8ae03cfb911bd1da04eca988cb99b22a2c Mon Sep 17 00:00:00 2001 From: Thomas Suckow Date: Thu, 25 Jun 2020 03:21:17 +0000 Subject: [PATCH] v4.2.9 --- CHANGELOG.md | 9 +++++++++ README.md | 6 +++--- build.sbt | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ad290e..33dda9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ +4.2.9 +----- +2020-06-24 + +* Fix Mixins not resolving to the base types (as they did in 4.2.0) +* Add `annotatedWith` that takes a class object +* Fix `(=> Unit)` throwing an exception about being unable to find `` + 4.2.8 ----- 2020-06-22 * Fix primative arrays +* Fix Unit 4.2.7 ----- diff --git a/README.md b/README.md index 66dcd4e..39360ad 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,18 @@ We currently support Scala `2.11, 2.12, 2.13` net.codingwell scala-guice_2.13 - 4.2.8 + 4.2.9 ``` ##### sbt: ```scala -"net.codingwell" %% "scala-guice" % "4.2.8" +"net.codingwell" %% "scala-guice" % "4.2.9" ``` ##### gradle: ```groovy -'net.codingwell:scala-guice_2.13:4.2.8' +'net.codingwell:scala-guice_2.13:4.2.9' ``` ### Mixin diff --git a/build.sbt b/build.sbt index 3480a13..bdb1f0c 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ description := "Scala syntax for Guice" organization := "net.codingwell" -version := "4.2.8" +version := "4.2.9" licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))