Skip to content

Commit 94a85ed

Browse files
Merge pull request #418 from lorandszakacs/prepare_release_1.2.2
Prepare release 1.2.2
2 parents d0622f7 + 18d1639 commit 94a85ed

4 files changed

Lines changed: 31 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest]
29-
scala: [2.13.5, 2.12.13, 3.0.0-RC2, 3.0.0-RC1]
29+
scala: [2.13.5, 2.12.13, 3.0.0-RC1, 3.0.0-RC2]
3030
java: [adopt@1.8, adopt@1.11]
3131
runs-on: ${{ matrix.os }}
3232
steps:
@@ -123,22 +123,22 @@ jobs:
123123
tar xf targets.tar
124124
rm targets.tar
125125
126-
- name: Download target directories (3.0.0-RC2)
126+
- name: Download target directories (3.0.0-RC1)
127127
uses: actions/download-artifact@v2
128128
with:
129-
name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }}
129+
name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }}
130130

131-
- name: Inflate target directories (3.0.0-RC2)
131+
- name: Inflate target directories (3.0.0-RC1)
132132
run: |
133133
tar xf targets.tar
134134
rm targets.tar
135135
136-
- name: Download target directories (3.0.0-RC1)
136+
- name: Download target directories (3.0.0-RC2)
137137
uses: actions/download-artifact@v2
138138
with:
139-
name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }}
139+
name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }}
140140

141-
- name: Inflate target directories (3.0.0-RC1)
141+
- name: Inflate target directories (3.0.0-RC2)
142142
run: |
143143
tar xf targets.tar
144144
rm targets.tar

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,27 @@
33
This file summarizes **notable** changes for each release, but does not describe internal changes unless they are particularly exciting.
44

55
----
6-
7-
# <a name="1.2.0-RC2"></a>New and Noteworthy for Version 1.2.0-RC1
6+
# <a name="1.2.2"></a>New and Noteworthy for Version 1.2.2
7+
- cats-effect-2.4.1
8+
- cats 2.5.0
9+
- add Scala 3.0.0-RC2 build
10+
- drop Scala 3.0.0-M3 build
11+
12+
# <a name="1.2.1"></a>New and Noteworthy for Version 1.2.1
13+
- cats-effect-2.4.0
14+
15+
# <a name="1.2.0"></a>New and Noteworthy for Version 1.2.0
16+
17+
- add LogLevel.fromString method #343 thanks to @Daenyth
18+
- add NoOpLogger.apply constructor #344 thanks to @bplommer
19+
- add StructuredLogger.withModifiedContextmethod #361 thanks to @ivan-klass
20+
- add Scala 3.0.0-RC1 build
21+
- drop Scala 3.0.0-M2 build
22+
- cats-2.4.2
23+
- cats-effect-2.3.3
24+
- scalajs-1.5.0
25+
26+
# <a name="1.2.0-RC1"></a>New and Noteworthy for Version 1.2.0-RC1
827

928
- Now published under `org.typelevel`
1029
- Root package changed to `org.typelevel.log4cats`

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ enablePlugins(SonatypeCiReleasePlugin)
88

99
ThisBuild / organization := "org.typelevel"
1010
ThisBuild / baseVersion := "1.2"
11-
ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-RC2", "3.0.0-RC1")
11+
ThisBuild / crossScalaVersions := Seq(Scala213, Scala212, "3.0.0-RC1", "3.0.0-RC2")
1212
ThisBuild / scalaVersion := Scala213
1313
ThisBuild / publishFullName := "Christopher Davenport"
1414
ThisBuild / publishGithubUser := "christopherdavenport"
@@ -22,6 +22,7 @@ ThisBuild / versionIntroduced := Map(
2222
"2.13" -> "1.2.0",
2323
"3.0.0-M3" -> "1.2.0",
2424
"3.0.0-RC1" -> "1.2.0",
25+
"3.0.0-RC2" -> "1.2.2"
2526
)
2627

2728
val MicrositesCond = s"matrix.scala == '$Scala212'"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.0")
66
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1")
77
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
88
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.19")
9-
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.3")
9+
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.4")

0 commit comments

Comments
 (0)