Skip to content

Commit 4f3d1c2

Browse files
committed
logger-f v2.2.0-beta1
1 parent bd5c6ea commit 4f3d1c2

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ lazy val logbackMdcMonix3Js = logbackMdcMonix3.js
301301

302302
lazy val logbackMdcCatsEffect3 = module(ProjectName("logback-mdc-cats-effect3"), crossProject(JVMPlatform, JSPlatform))
303303
.settings(
304-
description := "Logger for F[_] - logback MDC context map support for Cats Effect 3",
304+
description := "Logger for F[_] - logback MDC context map support for Cats Effect 3",
305305
libraryDependencies ++= Seq(
306306
libs.logbackClassic,
307307
libs.logbackScalaInterop,
@@ -575,7 +575,7 @@ lazy val props =
575575
val removeDottyIncompatible: ModuleID => Boolean =
576576
m =>
577577
// m.name == "wartremover" ||
578-
m.name == "ammonite" ||
578+
m.name == "ammonite" ||
579579
m.name == "kind-projector" ||
580580
m.name == "better-monadic-for" ||
581581
m.name == "mdoc"
@@ -718,7 +718,7 @@ def projectCommonSettings(projectName: String, crossProject: CrossProject.Builde
718718
// , Compile / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value)
719719
// , Test / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value)
720720
wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value),
721-
fork := true,
721+
fork := true,
722722
Compile / console / wartremoverErrors := List.empty,
723723
Compile / console / wartremoverWarnings := List.empty,
724724
Compile / console / scalacOptions :=
@@ -747,7 +747,7 @@ def projectCommonSettings(projectName: String, crossProject: CrossProject.Builde
747747
)
748748

749749
lazy val commonJsSettings: SettingsDefinition = List(
750-
Test / fork := false,
750+
Test / fork := false
751751
// Test / scalacOptions ++= (if (scalaVersion.value.startsWith("3")) List.empty
752752
// else List("-P:scalajs:nowarnGlobalExecutionContext")),
753753
// Test / compile / scalacOptions ++= (if (scalaVersion.value.startsWith("3")) List.empty

changelogs/2.2.0-beta1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## [2.2.0-beta1](https://github.com/Kevin-Lee/logger-f/issues?q=is%3Aissue+milestone%3Av2-m3) - 2025-01-03
2+
3+
* Add `MdcAdapter` for Cats Effect 3 to properly share context through `MDC` with `IO` and `IOLocal` from Cats Effect 3 (#441)
4+
* This is a beta released for testing the new feature with cats-effect `3.6-02a43a6`.

0 commit comments

Comments
 (0)