Skip to content

Commit 31416ff

Browse files
authored
chore: release main (#553)
1 parent ee85256 commit 31416ff

File tree

46 files changed

+301
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+301
-116
lines changed

.release-please-manifest.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"bins/cdl2spice": "0.2.1",
3-
"bins/spicemerge": "0.0.0",
4-
"bins/sky130spconv": "0.0.0",
5-
"codegen": "0.10.1",
2+
"bins/cdl2spice": "0.2.2",
3+
"bins/spicemerge": "0.1.0",
4+
"bins/sky130spconv": "0.1.0",
5+
"codegen": "0.10.2",
66
"config": "0.4.1",
77
"docs/snippets": "0.7.0",
88
"examples": "0.2.0",
@@ -21,24 +21,24 @@
2121
"libs/geometry": "0.7.1",
2222
"libs/geometry_macros": "0.1.1",
2323
"libs/pathtree": "0.3.0",
24-
"libs/psfparser": "0.1.3",
24+
"libs/psfparser": "0.1.4",
2525
"libs/scir": "0.9.1",
26-
"libs/spice": "0.9.1",
26+
"libs/spice": "0.9.2",
2727
"libs/layir": "0.2.1",
2828
"libs/lefdef": "0.2.1",
2929
"libs/macrotools": "0.2.0",
30-
"libs/nutlex": "0.4.1",
30+
"libs/nutlex": "0.4.2",
3131
"libs/type_dispatch": "0.5.1",
3232
"libs/type_dispatch_macros": "0.4.1",
3333
"libs/uniquify": "0.4.0",
3434
"libs/verilog": "0.2.1",
35-
"pdks/sky130": "0.10.1",
36-
"substrate": "0.10.1",
35+
"pdks/sky130": "0.10.2",
36+
"substrate": "0.10.2",
3737
"tools/magic": "0.2.1",
38-
"tools/netgen": "0.2.0",
39-
"tools/ngspice": "0.5.1",
40-
"tools/pegasus": "0.2.0",
41-
"tools/quantus": "0.2.1",
42-
"tools/spectre": "0.11.1",
43-
"tools/magic_netgen": "0.1.2"
38+
"tools/netgen": "0.2.1",
39+
"tools/ngspice": "0.5.2",
40+
"tools/pegasus": "0.2.1",
41+
"tools/quantus": "0.2.2",
42+
"tools/spectre": "0.11.2",
43+
"tools/magic_netgen": "0.1.3"
4444
}

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bins/cdl2spice/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* spice bumped from 0.9.1 to 0.9.2
6+
37
## [0.2.1](https://github.com/ucb-substrate/substrate2/compare/cdl2spice-v0.2.0...cdl2spice-v0.2.1) (2025-01-24)
48

59

bins/cdl2spice/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdl2spice"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55

66
[dependencies]
@@ -9,4 +9,4 @@ clap = { version = "4", features = ["derive"] }
99
arcstr = "1"
1010

1111
scir = { version = "0.9.1", registry = "substrate", path = "../../libs/scir" }
12-
spice = { version = "0.9.1", registry = "substrate", path = "../../libs/spice" }
12+
spice = { version = "0.9.2", registry = "substrate", path = "../../libs/spice" }

bins/sky130spconv/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-02-02)
4+
5+
6+
### Features
7+
8+
* **docs:** documentation on sky130spconv ([#572](https://github.com/ucb-substrate/substrate2/issues/572)) ([d2267df](https://github.com/ucb-substrate/substrate2/commit/d2267dfb72106391a51ac868a1ec4ad6a7f927ac))
9+
* **sky130spconv:** CLI to convert between sky130 schemas ([#570](https://github.com/ucb-substrate/substrate2/issues/570)) ([a705a71](https://github.com/ucb-substrate/substrate2/commit/a705a71238d61794dd5c322b3b55594d4719886b))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* spice bumped from 0.9.1 to 0.9.2
17+
* sky130 bumped from 0.10.1 to 0.10.2

bins/sky130spconv/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sky130spconv"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition = "2021"
55
readme = "README.md"
66

@@ -10,6 +10,6 @@ clap = { version = "4", features = ["derive"] }
1010
arcstr = "1"
1111

1212
scir = { version = "0.9.1", registry = "substrate", path = "../../libs/scir" }
13-
spice = { version = "0.9.1", registry = "substrate", path = "../../libs/spice" }
14-
sky130 = { version = "0.10.1", registry = "substrate", path = "../../pdks/sky130" }
13+
spice = { version = "0.9.2", registry = "substrate", path = "../../libs/spice" }
14+
sky130 = { version = "0.10.2", registry = "substrate", path = "../../pdks/sky130" }
1515
thiserror = "2"

bins/spicemerge/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-02-02)
4+
5+
6+
### Features
7+
8+
* **sky130spconv:** CLI to convert between sky130 schemas ([#570](https://github.com/ucb-substrate/substrate2/issues/570)) ([a705a71](https://github.com/ucb-substrate/substrate2/commit/a705a71238d61794dd5c322b3b55594d4719886b))
9+
* **spicemerge:** add command line tool for aggregating SPICE netlists ([#568](https://github.com/ucb-substrate/substrate2/issues/568)) ([ffd6975](https://github.com/ucb-substrate/substrate2/commit/ffd6975e83bcaaea898ff18b94e48b8a75661096))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* spice bumped from 0.9.1 to 0.9.2

bins/spicemerge/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spicemerge"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
@@ -9,4 +9,4 @@ clap = { version = "4", features = ["derive"] }
99
arcstr = "1"
1010

1111
scir = { version = "0.9.1", registry = "substrate", path = "../../libs/scir" }
12-
spice = { version = "0.9.1", registry = "substrate", path = "../../libs/spice" }
12+
spice = { version = "0.9.2", registry = "substrate", path = "../../libs/spice" }

codegen/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@
2424
* spectre bumped from <=0.9.0 to <=0.9.1
2525
* spice bumped from <=0.7.0 to <=0.7.1
2626

27+
## [0.10.2](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.10.1...codegen-v0.10.2) (2025-02-02)
28+
29+
30+
### Bug Fixes
31+
32+
* **deps:** update deps to latest versions ([#562](https://github.com/ucb-substrate/substrate2/issues/562)) ([fe86a45](https://github.com/ucb-substrate/substrate2/commit/fe86a4552ae1238495f26b51443d7729b54398f0))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dev-dependencies
39+
* substrate bumped from <=0.10.1 to <=0.10.2
40+
2741
## [0.10.1](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.10.0...codegen-v0.10.1) (2025-01-24)
2842

2943

codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codegen"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
edition = "2021"
55

66
[dependencies]
@@ -15,7 +15,7 @@ snippets = { version = "0.7.0", registry = "substrate", path = "../docs/snippets
1515
macrotools = { version = "0.2.0", registry = "substrate", path = "../libs/macrotools" }
1616

1717
[dev-dependencies]
18-
substrate = { version = "<=0.10.1", registry = "substrate", path = "../substrate" }
18+
substrate = { version = "<=0.10.2", registry = "substrate", path = "../substrate" }
1919
scir = { version = "<=0.9.1", registry = "substrate", path = "../libs/scir" }
2020
arcstr = "1"
2121
rust_decimal = "1"

0 commit comments

Comments
 (0)