Skip to content

Commit

Permalink
Version bump to 1.0.0, because that's actually official
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Dec 30, 2022
1 parent 9f6e35f commit 6224703
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]

Expand Down
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")),
Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit 6224703

Please sign in to comment.