diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ed0e128..fdb1886c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.5, 2.12.13, 3.0.0-RC2, 3.0.0-RC1] + scala: [2.13.5, 2.12.13, 3.0.0-RC1, 3.0.0-RC2] java: [adopt@1.8, adopt@1.11] runs-on: ${{ matrix.os }} steps: @@ -123,22 +123,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.0-RC2) + - name: Download target directories (3.0.0-RC1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }} - - name: Inflate target directories (3.0.0-RC2) + - name: Inflate target directories (3.0.0-RC1) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.0-RC1) + - name: Download target directories (3.0.0-RC2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }} - - name: Inflate target directories (3.0.0-RC1) + - name: Inflate target directories (3.0.0-RC2) run: | tar xf targets.tar rm targets.tar diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aa26003..be673e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,27 @@ This file summarizes **notable** changes for each release, but does not describe internal changes unless they are particularly exciting. ---- - -# New and Noteworthy for Version 1.2.0-RC1 +# New and Noteworthy for Version 1.2.2 +- cats-effect-2.4.1 +- cats 2.5.0 +- add Scala 3.0.0-RC2 build +- drop Scala 3.0.0-M3 build + +# New and Noteworthy for Version 1.2.1 +- cats-effect-2.4.0 + +# New and Noteworthy for Version 1.2.0 + +- add LogLevel.fromString method #343 thanks to @Daenyth +- add NoOpLogger.apply constructor #344 thanks to @bplommer +- add StructuredLogger.withModifiedContextmethod #361 thanks to @ivan-klass +- add Scala 3.0.0-RC1 build +- drop Scala 3.0.0-M2 build +- cats-2.4.2 +- cats-effect-2.3.3 +- scalajs-1.5.0 + +# New and Noteworthy for Version 1.2.0-RC1 - Now published under `org.typelevel` - Root package changed to `org.typelevel.log4cats` diff --git a/build.sbt b/build.sbt index a6613c05..8baa10d9 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ enablePlugins(SonatypeCiReleasePlugin) ThisBuild / organization := "org.typelevel" ThisBuild / baseVersion := "1.2" -ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-RC2", "3.0.0-RC1") +ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-RC1", "3.0.0-RC2") ThisBuild / scalaVersion := Scala213 ThisBuild / publishFullName := "Christopher Davenport" ThisBuild / publishGithubUser := "christopherdavenport" @@ -22,6 +22,7 @@ ThisBuild / versionIntroduced := Map( "2.13" -> "1.2.0", "3.0.0-M3" -> "1.2.0", "3.0.0-RC1" -> "1.2.0", + "3.0.0-RC2" -> "1.2.2" ) val MicrositesCond = s"matrix.scala == '$Scala212'" diff --git a/project/plugins.sbt b/project/plugins.sbt index cb70a90b..26daf87c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -6,4 +6,4 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.0") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.19") -addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.3") +addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.4")