Skip to content

Commit 343de3b

Browse files
committed
chore: release main
1 parent c1a28c3 commit 343de3b

Some content is hidden

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

60 files changed

+434
-174
lines changed

.release-please-manifest.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"bins/cdl2spice": "0.2.2",
3-
"bins/spicemerge": "0.1.0",
4-
"bins/sky130spconv": "0.1.0",
5-
"codegen": "0.10.2",
2+
"bins/cdl2spice": "0.2.3",
3+
"bins/spicemerge": "0.1.1",
4+
"bins/sky130spconv": "0.1.1",
5+
"codegen": "0.10.3",
66
"config": "0.4.1",
77
"docs/snippets": "0.7.0",
8-
"examples": "0.2.0",
8+
"examples": "0.2.1",
99
"examples/latest/sky130_inverter": "0.0.0",
1010
"examples/latest/spice_vdivider": "0.0.0",
1111
"examples/latest/colbuf": "0.0.0",
@@ -14,31 +14,31 @@
1414
"examples/latest/substrate_api_examples": "0.0.0",
1515
"libs/cache": "0.7.1",
1616
"libs/diagnostics": "0.4.0",
17-
"libs/enumify": "0.2.1",
18-
"libs/enumify_macros": "0.3.1",
19-
"libs/gds": "0.4.1",
20-
"libs/gdsconv": "0.2.1",
21-
"libs/geometry": "0.7.1",
17+
"libs/enumify": "0.2.2",
18+
"libs/enumify_macros": "0.3.2",
19+
"libs/gds": "0.4.2",
20+
"libs/gdsconv": "0.2.2",
21+
"libs/geometry": "0.7.2",
2222
"libs/geometry_macros": "0.1.1",
2323
"libs/pathtree": "0.3.0",
24-
"libs/psfparser": "0.1.4",
25-
"libs/scir": "0.9.1",
26-
"libs/spice": "0.9.2",
27-
"libs/layir": "0.2.1",
28-
"libs/lefdef": "0.2.1",
24+
"libs/psfparser": "0.1.5",
25+
"libs/scir": "0.9.2",
26+
"libs/spice": "0.9.3",
27+
"libs/layir": "0.2.2",
28+
"libs/lefdef": "0.2.2",
2929
"libs/macrotools": "0.2.0",
30-
"libs/nutlex": "0.4.2",
30+
"libs/nutlex": "0.4.3",
3131
"libs/type_dispatch": "0.5.1",
3232
"libs/type_dispatch_macros": "0.4.1",
3333
"libs/uniquify": "0.4.0",
34-
"libs/verilog": "0.2.1",
35-
"pdks/sky130": "0.10.2",
36-
"substrate": "0.10.2",
34+
"libs/verilog": "0.2.2",
35+
"pdks/sky130": "0.10.3",
36+
"substrate": "0.10.3",
3737
"tools/magic": "0.2.1",
3838
"tools/netgen": "0.2.1",
39-
"tools/ngspice": "0.5.2",
39+
"tools/ngspice": "0.5.3",
4040
"tools/pegasus": "0.2.1",
41-
"tools/quantus": "0.2.2",
42-
"tools/spectre": "0.11.2",
43-
"tools/magic_netgen": "0.1.3"
41+
"tools/quantus": "0.2.3",
42+
"tools/spectre": "0.11.3",
43+
"tools/magic_netgen": "0.1.4"
4444
}

Cargo.lock

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bins/cdl2spice/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
* dependencies
55
* spice bumped from 0.9.1 to 0.9.2
66

7+
* The following workspace dependencies were updated
8+
* dependencies
9+
* scir bumped from 0.9.1 to 0.9.2
10+
* spice bumped from 0.9.2 to 0.9.3
11+
712
## [0.2.1](https://github.com/ucb-substrate/substrate2/compare/cdl2spice-v0.2.0...cdl2spice-v0.2.1) (2025-01-24)
813

914

bins/cdl2spice/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "cdl2spice"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55

66
[dependencies]
77
anyhow = "1"
88
clap = { version = "4", features = ["derive"] }
99
arcstr = "1"
1010

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

bins/sky130spconv/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* scir bumped from 0.9.1 to 0.9.2
6+
* spice bumped from 0.9.2 to 0.9.3
7+
* sky130 bumped from 0.10.2 to 0.10.3
8+
39
## 0.1.0 (2025-02-02)
410

511

bins/sky130spconv/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sky130spconv"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
readme = "README.md"
66

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

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

bins/spicemerge/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* scir bumped from 0.9.1 to 0.9.2
6+
* spice bumped from 0.9.2 to 0.9.3
7+
38
## 0.1.0 (2025-02-02)
49

510

bins/spicemerge/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "spicemerge"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]
77
anyhow = "1"
88
clap = { version = "4", features = ["derive"] }
99
arcstr = "1"
1010

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

codegen/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,24 @@
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.3](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.10.2...codegen-v0.10.3) (2025-03-10)
28+
29+
30+
### Bug Fixes
31+
32+
* **deps:** update deps to latest versions ([#617](https://github.com/ucb-substrate/substrate2/issues/617)) ([ce3d243](https://github.com/ucb-substrate/substrate2/commit/ce3d243cbc10d64086939e44963e3cef591d6bda))
33+
* **schematic:** support accessing nested PEX data even upon additional nesting ([#621](https://github.com/ucb-substrate/substrate2/issues/621)) ([c1a28c3](https://github.com/ucb-substrate/substrate2/commit/c1a28c3dd9c8261218e29d3295f79b55f5eec277))
34+
35+
36+
### Dependencies
37+
38+
* The following workspace dependencies were updated
39+
* dev-dependencies
40+
* substrate bumped from <=0.10.2 to <=0.10.3
41+
* scir bumped from <=0.9.1 to <=0.9.2
42+
* build-dependencies
43+
* examples bumped from 0.2.0 to 0.2.1
44+
2745
## [0.10.2](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.10.1...codegen-v0.10.2) (2025-02-02)
2846

2947

0 commit comments

Comments
 (0)