Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
labra committed Apr 21, 2024
1 parent 8159a25 commit 6d1464b
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 72 deletions.
2 changes: 1 addition & 1 deletion .bsp/sbt.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"sbt","version":"1.6.1","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["/usr/lib/jvm/java-11-openjdk-amd64/bin/java","-Xms100m","-Xmx100m","-classpath","/home/labra/.cache/sbt/boot/sbt-launch/1.6.1/sbt-launch-1.6.1.jar","-Dsbt.script=/usr/bin/sbt","xsbt.boot.Boot","-bsp"]}
{"name":"sbt","version":"1.8.0","bspVersion":"2.1.0-M1","languages":["scala"],"argv":["/usr/lib/jvm/java-17-openjdk-amd64/bin/java","-Xms100m","-Xmx100m","-classpath","/home/labra/.cache/sbt/boot/sbt-launch/1.9.8/sbt-launch-1.9.8.jar","-Dsbt.script=/usr/bin/sbt","xsbt.boot.Boot","-bsp"]}
52 changes: 0 additions & 52 deletions .travis.yml

This file was deleted.

16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val scala212 = "2.12.15"
lazy val scala213 = "2.13.8"
lazy val scala3 = "3.1.0"
lazy val scala212 = "2.12.17"
lazy val scala213 = "2.13.10"
lazy val scala3 = "3.2.1"

lazy val supportedScalaVersions = List(
scala3,
Expand All @@ -10,17 +10,17 @@ lazy val supportedScalaVersions = List(

val Java11 = JavaSpec.temurin("11") // "adopt@1.11"

lazy val srdfVersion = "0.1.106"
lazy val shaclexVersion = "0.1.103"
lazy val shaclsVersion = "0.1.78"
lazy val shexsVersion = "0.1.108"
lazy val srdfVersion = "0.1.122"
lazy val shaclexVersion = "0.2.3"
lazy val shaclsVersion = "0.1.83"
lazy val shexsVersion = "0.2.32"

// Dependency versions
lazy val munitVersion = "0.7.29"
lazy val munitEffectVersion = "1.0.7"

lazy val plantumlVersion = "1.2017.12"
lazy val logbackVersion = "1.2.3"
lazy val logbackVersion = "1.2.11"
lazy val loggingVersion = "3.9.4"
lazy val scallopVersion = "4.1.0"

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.1
sbt.version=1.8.0
4 changes: 3 additions & 1 deletion project/metals.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// format: off
// DO NOT EDIT! This file is auto-generated.

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.12")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.17")

// format: on
11 changes: 5 additions & 6 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.14.2")
// addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.2")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("org.lyranthe.sbt" % "partial-unification" % "1.1.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0")
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
4 changes: 3 additions & 1 deletion project/project/metals.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// format: off
// DO NOT EDIT! This file is auto-generated.

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.12")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.17")

// format: on
4 changes: 3 additions & 1 deletion project/project/project/metals.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// format: off
// DO NOT EDIT! This file is auto-generated.

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.12")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.17")

// format: on
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.0.83-SNAPSHOT"
ThisBuild / version := "0.1.0"

0 comments on commit 6d1464b

Please sign in to comment.