diff --git a/README.md b/README.md index 12cef75..57fd566 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ to handle recursion, or plain `lazy val` based construction (as in regular `pars Parsley cats is distributed on Maven Central, and can be added to your project via: ```scala -libraryDependencies += "com.github.j-mie6" %% "parsley-cats" % "1.2.0" +libraryDependencies += "com.github.j-mie6" %% "parsley-cats" % "1.3.0" ``` it requires `parsley` and `cats-core` to also be dependencies of your project. The current version @@ -24,6 +24,7 @@ matrix for `parsley-cats`: | `1.0.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | | `1.1.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | | `1.2.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | +| `1.3.x` | `>= 4.5 && < 5` | `>= 2.8 && < 3` | To make use of your favourite `cats` syntax, you'll want the following imports: diff --git a/build.sbt b/build.sbt index c955ec8..acaca5b 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ inThisBuild(List( ProblemFilters.exclude[MissingClassProblem]("parsley.MonoidKForParsley"), ), // CI Configuration - tlCiReleaseBranches := Seq("staging/1.3"), + tlCiReleaseBranches := Seq("master"), tlCiScalafmtCheck := false, tlCiHeaderCheck := true, githubWorkflowJavaVersions := Seq(JavaSpec.temurin("8"), JavaSpec.temurin("11"), JavaSpec.temurin("17")),