Skip to content

Commit

Permalink
Merge pull request #401 from typelevel/2.0.0-RC1
Browse files Browse the repository at this point in the history
Release 2.0.0-RC1
  • Loading branch information
rossabaker authored Feb 22, 2021
2 parents 635a908 + 469022a commit c76d74b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 95 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.4, 2.12.13, 3.0.0-M2, 3.0.0-M3]
scala: [2.13.4, 2.12.13, 3.0.0-M3, 3.0.0-RC1]
java: [adopt@1.8, adopt@1.11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -123,22 +123,22 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.0.0-M2)
- name: Download target directories (3.0.0-M3)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.0.0-M2-${{ matrix.java }}
name: target-${{ matrix.os }}-3.0.0-M3-${{ matrix.java }}

- name: Inflate target directories (3.0.0-M2)
- name: Inflate target directories (3.0.0-M3)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.0.0-M3)
- name: Download target directories (3.0.0-RC1)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.0.0-M3-${{ matrix.java }}
name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }}

- name: Inflate target directories (3.0.0-M3)
- name: Inflate target directories (3.0.0-RC1)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
This file summarizes **notable** changes for each release, but does not describe internal changes unless they are particularly exciting.

----
# <a name="2.0.0-M2"></a>New and Noteworthy for Version 2.0.0-M2
# <a name="2.0.0-RC1"></a>New and Noteworthy for Version 2.0.0-RC1

- removed deprecated `org.typelevel.log4cats.extras.Translate` object
- remove deprecated `unsafe*` constructors
- Depends on cats-effect-3.0.0-RC1

Forward ports from `1.2.0-RC3`:
Forward ports from `1.2.0`:
- add `LogLevel.fromString` method [#343](https://github.com/typelevel/log4cats/pull/343) thanks to [@Daenyth](https://github.com/Daenyth)
- add `NoOpLogger.apply` constructor [#344](https://github.com/typelevel/log4cats/pull/344) thanks to [@bplommer](https://github.com/bplommer)
- add `StructuredLogger.withModifiedContext`method [#361](https://github.com/typelevel/log4cats/pull/361) thanks to [@ivan-klass](https://github.com/ivan-klass)
- depends on cats-2.4.2 and cats-effect-3.0.0-RC2
- built with Scala.js 1.5.0
- adds Dotty crossbuild for Scala 3.0.0-RC1
- drops Dotty crossbuild for Scala 3.0.0-RC1

# <a name="2.0.0-M1"></a>New and Noteworthy for Version 2.0.0-M1

Expand All @@ -23,6 +27,10 @@ Forward ports from `1.2.0-RC3`:
- add `LogLevel.fromString` method [#343](https://github.com/typelevel/log4cats/pull/343) thanks to [@Daenyth](https://github.com/Daenyth)
- add `NoOpLogger.apply` constructor [#344](https://github.com/typelevel/log4cats/pull/344) thanks to [@bplommer](https://github.com/bplommer)
- add `StructuredLogger.withModifiedContext`method [#361](https://github.com/typelevel/log4cats/pull/361) thanks to [@ivan-klass](https://github.com/ivan-klass)
- depends on cats-2.4.2 and cats-effect-2.3.2
- built with Scala.js 1.5.0
- adds Dotty crossbuild for Scala 3.0.0-RC1
- drops Dotty crossbuild for Scala 3.0.0-M2

# <a name="1.2.0-RC2"></a>New and Noteworthy for Version 1.2.0-RC1

Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enablePlugins(SonatypeCiReleasePlugin)

ThisBuild / organization := "org.typelevel"
ThisBuild / baseVersion := "2.0"
ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-M2", "3.0.0-M3")
ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-M3", "3.0.0-RC1")
ThisBuild / scalaVersion := Scala213
ThisBuild / publishFullName := "Christopher Davenport"
ThisBuild / publishGithubUser := "christopherdavenport"
Expand All @@ -19,8 +19,8 @@ ThisBuild / githubWorkflowJavaVersions := Seq("adopt@1.8", "adopt@1.11")
ThisBuild / versionIntroduced := Map(
"2.12" -> "1.2.0",
"2.13" -> "1.2.0",
"3.0.0-M2" -> "1.2.0",
"3.0.0-M3" -> "1.2.0",
"3.0.0-RC1" -> "1.2.0",
)

val MicrositesCond = s"matrix.scala == '$Scala212'"
Expand Down Expand Up @@ -72,10 +72,10 @@ ThisBuild / githubWorkflowPublish := Seq(
cond = Some(MicrositesCond)
)

val catsV = "2.4.1"
val catsEffectV = "3.0.0-RC1"
val catsV = "2.4.2"
val catsEffectV = "3.0.0-RC2"
val slf4jV = "1.7.30"
val munitCatsEffectV = "0.13.0"
val munitCatsEffectV = "0.13.1"
val logbackClassicV = "1.2.3"

Global / onChangedBuildSource := ReloadOnSourceChanges
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.18")
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.2")
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.3")

This file was deleted.

0 comments on commit c76d74b

Please sign in to comment.