Skip to content

Commit

Permalink
update to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
schoeberl committed Oct 29, 2024
1 parent d298595 commit f35d539
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Tabby OSS Cad Suite (from YosysHQ)
uses: YosysHQ/setup-oss-cad-suite@v1
Expand Down
2 changes: 1 addition & 1 deletion 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" % "0.5.1"
libraryDependencies += "edu.berkeley.cs" % "ip-contributions" % "0.5.2"
```

Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// See README.md for license details.

ThisBuild / scalaVersion := "2.12.13"
ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5")
ThisBuild / version := "0.5.1"
ThisBuild / scalaVersion := "2.12.17"
ThisBuild / crossScalaVersions := Seq("2.12.17", "2.13.10")
ThisBuild / version := "0.5.2"


lazy val publishSettings = Seq (
Expand Down Expand Up @@ -35,17 +35,17 @@ lazy val root = (project in file("."))
name := "ip-contributions",
resolvers += Resolver.sonatypeRepo("snapshots"),
libraryDependencies ++= Seq(
"edu.berkeley.cs" %% "chisel3" % "3.5.5",
"edu.berkeley.cs" %% "dsptools" % "1.5.5",
"edu.berkeley.cs" %% "chiseltest" % "0.5.5" % "test",
"edu.berkeley.cs" %% "chisel3" % "3.5.6",
"edu.berkeley.cs" %% "dsptools" % "1.5.6",
"edu.berkeley.cs" %% "chiseltest" % "0.5.6" % "test",
),
scalacOptions ++= Seq(
"-language:reflectiveCalls",
"-deprecation",
"-feature",
"-Xcheckinit",
),
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.5" cross CrossVersion.full),
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.6" cross CrossVersion.full),
// addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
)
.settings(publishSettings: _*)
1 change: 0 additions & 1 deletion src/main/scala/chisel/lib/firfilter/FIRFilter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
package chisel.lib.firfilter

import chisel3._
import chisel3.experimental.ChiselEnum
import chisel3.util._

/*
Expand Down
1 change: 0 additions & 1 deletion src/main/scala/chisel/lib/iirfilter/IIRFilter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
package chisel.lib.iirfilter

import chisel3._
import chisel3.experimental.ChiselEnum
import chisel3.util._

/*
Expand Down
1 change: 0 additions & 1 deletion src/main/scala/chisel/lib/spi/Spi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ package chisel.lib.spi

import chisel3._
import chisel3.experimental.Analog
import chisel3.experimental.ChiselEnum
import chisel3.stage.ChiselStage
import chisel3.util._

Expand Down

0 comments on commit f35d539

Please sign in to comment.