diff --git a/README.md b/README.md index ee8dcd6..e65dc31 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" % "0.2.0" +libraryDependencies += "com.github.j-mie6" %% "parsley-cats" % "1.0.0" ``` it requires `parsley` and `cats-core` to also be dependencies of your project. The current version @@ -21,6 +21,7 @@ matrix for `parsley-cats`: | :--------------------: | :---------------: | :-----------------: | | `0.1.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | | `0.2.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | +| `1.0.x` | `>= 4 && < 5` | `>= 2.8 && < 3` | Documentation can be found [**here**][Link-Scaladoc] diff --git a/build.sbt b/build.sbt index 587eb01..2b480e8 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ val Scala3 = "3.2.1" Global / onChangedBuildSource := ReloadOnSourceChanges inThisBuild(List( - tlBaseVersion := "0.2", + tlBaseVersion := "1.0", organization := "com.github.j-mie6", startYear := Some(2022), homepage := Some(url("https://github.com/j-mie6/parsley-cats")), @@ -39,10 +39,6 @@ lazy val `parsley-cats` = crossProject(JVMPlatform, JSPlatform, NativePlatform) "org.scalatest" %%% "scalatest" % "3.2.12" % Test, "org.typelevel" %%% "cats-laws" % "2.8.0" % Test, ), - // I think these are needed until we have moved to 1.0.0? the typelevel plugins don't seem to pick it up? - mimaPreviousArtifacts := Set( - "com.github.j-mie6" %% "parsley-cats" % "0.1.0", - ), ) .jsSettings( Test / scalaJSLinkerConfig := scalaJSLinkerConfig.value.withESFeatures(_.withESVersion(ESVersion.ES2018))