diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aca015e7..6d0a4d4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,8 +40,7 @@ jobs: timeout-minutes: 60 steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 @@ -113,8 +112,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 @@ -295,8 +293,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 diff --git a/docs/index.md b/docs/index.md index 8b9744cb..08678cb0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -8,13 +8,13 @@ To use in sbt add, the following to your `libraryDependencies`: ```scala // use this snippet for the JVM -libraryDependencies += "org.typelevel" %% "cats-parse" % "0.3.9" +libraryDependencies += "org.typelevel" %% "cats-parse" % "1.0.0" // use this snippet for JS, or cross-building -libraryDependencies += "org.typelevel" %%% "cats-parse" % "0.3.9" +libraryDependencies += "org.typelevel" %%% "cats-parse" % "1.0.0" ``` -The [API docs](https://javadoc.io/doc/org.typelevel/cats-parse_2.13/0.3.9/cats/parse/index.html) are published. +The [API docs](https://javadoc.io/doc/org.typelevel/cats-parse_2.13/1.0.0/cats/parse/index.html) are published. Why another parsing library? See this [blog post detailing the design](https://posco.medium.com/designing-a-parsing-library-in-scala-d5076de52536). To reiterate, diff --git a/project/build.properties b/project/build.properties index 0b699c30..db1723b0 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.2 +sbt.version=1.10.5 diff --git a/project/plugins.sbt b/project/plugins.sbt index c9f584c0..0ad5a034 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7") -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.3") -addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.3") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.4") +addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.4")