aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Koenig2023-03-15 12:31:40 -0700
committerGitHub2023-03-15 12:31:40 -0700
commit4575518456d8501c3581b195aa7a9e31af19dc38 (patch)
treeca827607a60dc40aa00e9d131811b177eb667938
parent6a999e306c81bb6a3276311022349523a576b552 (diff)
parent7262d5a538bd52850b90dd313757d3facb343b4a (diff)
Merge pull request #2613 from chipsalliance/maintenance-mode
Maintenance mode
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md10
-rw-r--r--.github/workflows/test.yml1
-rw-r--r--.mergify.yml8
-rw-r--r--README.md9
-rw-r--r--build.sbt4
5 files changed, 25 insertions, 7 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 77abae1d..d592df60 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,3 +1,11 @@
+<!--
+
+********** NOTICE **********
+
+This repository is only accepting bug fixes
+
+-->
+
### Contributor Checklist
- [ ] Did you add Scaladoc to every public function/method?
@@ -44,7 +52,7 @@ Text from here to the end of the body will be considered for inclusion in the re
### Reviewer Checklist (only modified by reviewer)
- [ ] Did you add the appropriate labels?
-- [ ] Did you mark the proper milestone (1.2.x, 1.3.0, 1.4.0) ?
+- [ ] Did you mark the proper milestone (1.6.x, 1.5.x) ?
- [ ] Did you review?
- [ ] Did you check whether all relevant Contributor checkboxes have been checked?
- [ ] Did you mark as `Please Merge`?
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 38febb1c..dff41ad2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,6 +5,7 @@ on:
push:
branches:
- master
+ - 1.6.x
- 1.5.x
- 1.4.x
- 1.3.x
diff --git a/.mergify.yml b/.mergify.yml
index 89f935ff..d44ac038 100644
--- a/.mergify.yml
+++ b/.mergify.yml
@@ -8,7 +8,7 @@ pull_request_rules:
- status-success=all tests passed
- '#approved-reviews-by>=1'
- '#changes-requested-reviews-by=0'
- - base=master
+ - base=1.6.x
- label="Please Merge"
- label!="DO NOT MERGE"
- label!="bp-conflict"
@@ -20,7 +20,7 @@ pull_request_rules:
- name: backport to 1.5.x
conditions:
- merged
- - base=master
+ - base=1.6.x
- milestone=1.5.x
actions:
backport:
@@ -36,7 +36,7 @@ pull_request_rules:
- name: backport to 1.4.x, 1.5.x
conditions:
- merged
- - base=master
+ - base=1.6.x
- milestone=1.4.x
actions:
backport:
@@ -53,7 +53,7 @@ pull_request_rules:
- name: backport to 1.3.x, 1.4.x, 1.5.x
conditions:
- merged
- - base=master
+ - base=1.6.x
- milestone=1.3.x
actions:
backport:
diff --git a/README.md b/README.md
index 48b5d650..c24730fd 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,12 @@
+# This project is in maintenance mode
+
+Pull Requests should only be made for bug fixes against versions 1.6 and below (Chisel 3.6 and below).
+
+Please see [CIRCT](https://github.com/llvm/circt) for the next generation FIRRTL compiler.
+Also see [Chisel](https://github.com/chipsalliance/chisel).
+
+---
+
![FIRRTL](https://raw.githubusercontent.com/freechipsproject/firrtl/master/doc/images/firrtl_logo.svg?sanitize=true)
---
diff --git a/build.sbt b/build.sbt
index 4c6c2456..e6290b05 100644
--- a/build.sbt
+++ b/build.sbt
@@ -61,7 +61,7 @@ lazy val firrtlSettings = Seq(
)
lazy val mimaSettings = Seq(
- mimaPreviousArtifacts := Set()
+ mimaPreviousArtifacts := Set("edu.berkeley.cs" %% "firrtl" % "1.6.0-RC2")
)
lazy val protobufSettings = Seq(
@@ -152,7 +152,7 @@ lazy val docSettings = Seq(
"-doc-source-url", {
val branch =
if (version.value.endsWith("-SNAPSHOT")) {
- "master"
+ "1.6.x"
} else {
s"v${version.value}"
}