Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 3.6-SNAPSHOT #2351

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Please select the item best describing the issue in each category and delete the

**Please tell us about your environment:**
<!-- (examples)
- version: `3.0-SNAPSHOT`
- version: 3.5.0
- OS: `Linux knight 4.4.0-92-generic #115-Ubuntu SMP Thu Aug 10 09:04:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux`
-->
**What is the use case for changing the behavior?**
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The repository version can be found in the [build.sbt](build.sbt) file.
As of the time of writing it was:

```
version := "3.5-SNAPSHOT"
version := "3.6-SNAPSHOT"
```

To publish your version of Chisel to the local Ivy (sbt's dependency manager) repository, run:
Expand All @@ -210,7 +210,7 @@ If you need to un-publish your local copy of Chisel, remove the directory genera
In order to have your projects use this version of Chisel, you should update the `libraryDependencies` setting in your project's build.sbt file to:

```
libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.5-SNAPSHOT"
libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.6-SNAPSHOT"
```

### Building Chisel with FIRRTL in the same SBT Project
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
enablePlugins(SiteScaladocPlugin)

val defaultVersions = Map(
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.5-SNAPSHOT",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.5-SNAPSHOT",
"chiseltest" -> "edu.berkeley.cs" %% "chiseltest" % "0.5-SNAPSHOT",
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6-SNAPSHOT",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6-SNAPSHOT",
"chiseltest" -> "edu.berkeley.cs" %% "chiseltest" % "0.6-SNAPSHOT",
)

lazy val commonSettings = Seq (
Expand All @@ -14,7 +14,7 @@ lazy val commonSettings = Seq (
Resolver.sonatypeRepo("releases")
),
organization := "edu.berkeley.cs",
version := "3.5-SNAPSHOT",
version := "3.6-SNAPSHOT",
autoAPIMappings := true,
scalaVersion := "2.12.15",
crossScalaVersions := Seq("2.13.6", "2.12.15"),
Expand Down
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.13.6", "2.12.14")
// Please retain it.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"firrtl" -> "1.5-SNAPSHOT"
"firrtl" -> "1.6-SNAPSHOT"
)

val testDefaultVersions = Map(
"treadle" -> "1.5-SNAPSHOT"
"treadle" -> "1.6-SNAPSHOT"
)

def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
Expand Down Expand Up @@ -49,7 +49,7 @@ trait CommonModule extends CrossSbtModule with PublishModule with ScalafmtModule
ivy"com.lihaoyi::os-lib:0.8.0",
) ++ firrtlIvyDeps

def publishVersion = "3.5-SNAPSHOT"
def publishVersion = "3.6-SNAPSHOT"

// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
protected def majorVersion = crossScalaVersion.split('.')(1).toInt
Expand Down