Skip to content

Commit

Permalink
Update for 3.20.6 (#275)
Browse files Browse the repository at this point in the history
Closes #272, #270, #269, #268, #267, #244
  • Loading branch information
kellen authored Oct 24, 2023
1 parent 2659634 commit f23a9f2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
uses: olafurpg/setup-scala@v10
with:
java-version: 1.11.0
- run: sbt test packagePlugin
- run: sbt test packageArtifact
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: olafurpg/setup-scala@v10
with:
java-version: 1.11.0
- run: sbt test packagePlugin runPluginVerifier
- run: sbt test packageArtifact runPluginVerifier
publish:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.5.1"
version = "3.5.9"

runner.dialect = scala213source3

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Inside IntelliJ, `Preferences` -> `Plugins` -> `Browse repositories ...` and sea
## Build locally:

```bash
sbt packagePlugin
sbt packageArtifact
```

Zipped and ready to install plugin is inside `target`.
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
*/

lazy val Guava = "com.google.guava" % "guava" % "30.1.1-jre"
lazy val Scalatest = "org.scalatest" %% "scalatest" % "3.2.11"
lazy val Scalatest = "org.scalatest" %% "scalatest" % "3.2.17"

lazy val commonSettings = Def.settings(
scalaVersion := "2.13.8",
scalaVersion := "2.13.12",
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.6.2
sbt.version = 1.9.6
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.13.8")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.20.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

0 comments on commit f23a9f2

Please sign in to comment.