From 648a0c528bba926383cd6e9840c6ca843072b4e0 Mon Sep 17 00:00:00 2001 From: Martin Schoeberl Date: Wed, 6 Nov 2024 17:20:20 -0800 Subject: [PATCH] Don't fix sbt version --- README.md | 4 ++-- build.sbt | 11 +++-------- project/build.properties | 1 - 3 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 project/build.properties diff --git a/README.md b/README.md index d515f1e..b3a97a7 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ the community. This is the place to do it. line to your ```build.sbt``` ``` -libraryDependencies += "edu.berkeley.cs" % "ip-contributions" % "5.0.0" +libraryDependencies += "edu.berkeley.cs" % "ip-contributions" % "5.0.1" ``` ### Versions @@ -34,7 +34,7 @@ libraryDependencies += "edu.berkeley.cs" % "ip-contributions" % "5.0.0" | ip-contributions | Chisel | Scala | |------------------|--------|-------| -| 5.0.0 | 5.3.0 | 2.13 | +| 5.0.1 | 5.3.0 | 2.13 | | 0.6.1 | 3.6.1 | 2.13 | | 0.5.4 | 3.5.6 | 2.13 | | 0.5.3 | 3.5.6 | 2.12 | diff --git a/build.sbt b/build.sbt index 6b5a486..3d3cf9f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ // See README.md for license details. ThisBuild / scalaVersion := "2.13.14" -ThisBuild / version := "5.0.0" +ThisBuild / version := "5.0.1" lazy val publishSettings = Seq ( @@ -20,12 +20,7 @@ lazy val publishSettings = Seq ( // add sonatype repository settings // snapshot versions publish to sonatype snapshot repository // other versions publish to sonatype staging repository - publishTo := Some( - if (isSnapshot.value) - Opts.resolver.sonatypeSnapshots - else - Opts.resolver.sonatypeStaging - ), + publishTo := Some(Opts.resolver.sonatypeStaging) ) val chiselVersion = "5.3.0" @@ -33,7 +28,7 @@ val chiselVersion = "5.3.0" lazy val root = (project in file(".")) .settings( name := "ip-contributions", - resolvers += Resolver.sonatypeRepo("snapshots"), + // resolvers += Resolver.sonatypeRepo("snapshots"), libraryDependencies ++= Seq( "org.chipsalliance" %% "chisel" % chiselVersion, "edu.berkeley.cs" %% "chiseltest" % "5.0.2" % "test", diff --git a/project/build.properties b/project/build.properties deleted file mode 100644 index b53dc26..0000000 --- a/project/build.properties +++ /dev/null @@ -1 +0,0 @@ -sbt.version = 1.3.10