Skip to content

Commit

Permalink
Don't fix sbt version
Browse files Browse the repository at this point in the history
  • Loading branch information
schoeberl committed Nov 7, 2024
1 parent 5d8ef03 commit 648a0c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 |
Expand Down
11 changes: 3 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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 (
Expand All @@ -20,20 +20,15 @@ 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"

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",
Expand Down
1 change: 0 additions & 1 deletion project/build.properties

This file was deleted.

0 comments on commit 648a0c5

Please sign in to comment.