Skip to content

Commit c82ac26

Browse files
committed
chore: release main
1 parent 46be12c commit c82ac26

File tree

42 files changed

+188
-110
lines changed

Some content is hidden

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

42 files changed

+188
-110
lines changed

.release-please-manifest.json

+14-14
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",
@@ -16,14 +16,14 @@
1616
"libs/diagnostics": "0.4.0",
1717
"libs/enumify": "0.2.1",
1818
"libs/enumify_macros": "0.3.1",
19-
"libs/gds": "0.4.1",
20-
"libs/gdsconv": "0.2.1",
19+
"libs/gds": "0.4.2",
20+
"libs/gdsconv": "0.2.2",
2121
"libs/geometry": "0.7.1",
2222
"libs/geometry_macros": "0.1.1",
2323
"libs/pathtree": "0.3.0",
2424
"libs/psfparser": "0.1.4",
2525
"libs/scir": "0.9.1",
26-
"libs/spice": "0.9.2",
26+
"libs/spice": "0.9.3",
2727
"libs/layir": "0.2.1",
2828
"libs/lefdef": "0.2.1",
2929
"libs/macrotools": "0.2.0",
@@ -32,13 +32,13 @@
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.2",
36-
"substrate": "0.10.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

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

bins/cdl2spice/CHANGELOG.md

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

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

913

bins/cdl2spice/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdl2spice"
3-
version = "0.2.2"
3+
version = "0.2.3"
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.2", registry = "substrate", path = "../../libs/spice" }
12+
spice = { version = "0.9.3", registry = "substrate", path = "../../libs/spice" }

bins/sky130spconv/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+
* spice bumped from 0.9.2 to 0.9.3
6+
* sky130 bumped from 0.10.2 to 0.10.3
7+
38
## 0.1.0 (2025-02-02)
49

510

bins/sky130spconv/Cargo.toml

+3-3
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

@@ -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.2", registry = "substrate", path = "../../libs/spice" }
14-
sky130 = { version = "0.10.2", registry = "substrate", path = "../../pdks/sky130" }
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

+4
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.2 to 0.9.3
6+
37
## 0.1.0 (2025-02-02)
48

59

bins/spicemerge/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spicemerge"
3-
version = "0.1.0"
3+
version = "0.1.1"
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.2", registry = "substrate", path = "../../libs/spice" }
12+
spice = { version = "0.9.3", registry = "substrate", path = "../../libs/spice" }

codegen/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
* spectre bumped from <=0.9.0 to <=0.9.1
2525
* spice bumped from <=0.7.0 to <=0.7.1
2626

27+
* The following workspace dependencies were updated
28+
* dev-dependencies
29+
* substrate bumped from <=0.10.2 to <=0.10.3
30+
* build-dependencies
31+
* examples bumped from 0.2.0 to 0.2.1
32+
2733
## [0.10.2](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.10.1...codegen-v0.10.2) (2025-02-02)
2834

2935

codegen/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codegen"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
[dependencies]
@@ -15,15 +15,15 @@ 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.2", registry = "substrate", path = "../substrate" }
18+
substrate = { version = "<=0.10.3", registry = "substrate", path = "../substrate" }
1919
scir = { version = "<=0.9.1", registry = "substrate", path = "../libs/scir" }
2020
arcstr = "1"
2121
rust_decimal = "1"
2222
rust_decimal_macros = "1"
2323

2424
[build-dependencies]
2525
snippets = { version = "0.7.0", registry = "substrate", path = "../docs/snippets" }
26-
examples = { version = "0.2.0", registry = "substrate", path = "../examples" }
26+
examples = { version = "0.2.1", registry = "substrate", path = "../examples" }
2727

2828
[lib]
2929
proc-macro = true

examples/CHANGELOG.md

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

3+
## [0.2.1](https://github.com/ucb-substrate/substrate2/compare/examples-v0.2.0...examples-v0.2.1) (2025-02-04)
4+
5+
6+
### Bug Fixes
7+
8+
* **examples:** fix release example compilation ([#576](https://github.com/ucb-substrate/substrate2/issues/576)) ([1e3d89f](https://github.com/ucb-substrate/substrate2/commit/1e3d89f3dd8c152640ec0408fefc9e32e4d7ddba))
9+
310
## [0.2.0](https://github.com/ucb-substrate/substrate2/compare/examples-v0.1.0...examples-v0.2.0) (2025-01-23)
411

512

examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
include = [
66
"**/*.rs",

examples/latest/colbuf/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
substrate = { version = "0.10.2", registry = "substrate", path = "../../../substrate" }
9-
spice = { version = "0.9.2", registry = "substrate", path = "../../../libs/spice" }
10-
spectre = { version = "0.11.2", registry = "substrate", path = "../../../tools/spectre" }
11-
ngspice = { version = "0.5.2", registry = "substrate", path = "../../../tools/ngspice" }
12-
quantus = { version = "0.2.2", registry = "substrate", path = "../../../tools/quantus" }
13-
magic_netgen = { version = "0.1.3", registry = "substrate", path = "../../../tools/magic_netgen" }
8+
substrate = { version = "0.10.3", registry = "substrate", path = "../../../substrate" }
9+
spice = { version = "0.9.3", registry = "substrate", path = "../../../libs/spice" }
10+
spectre = { version = "0.11.3", registry = "substrate", path = "../../../tools/spectre" }
11+
ngspice = { version = "0.5.3", registry = "substrate", path = "../../../tools/ngspice" }
12+
quantus = { version = "0.2.3", registry = "substrate", path = "../../../tools/quantus" }
13+
magic_netgen = { version = "0.1.4", registry = "substrate", path = "../../../tools/magic_netgen" }
1414
rust_decimal = "1.36.0"
1515
rust_decimal_macros = "1.36.0"
1616

examples/latest/sky130_inverter/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ publish = false
66

77
# begin-code-snippet dependencies
88
[dependencies]
9-
substrate = { version = "0.10.2", registry = "substrate", path = "../../../substrate" }
10-
sky130 = { version = "0.10.2", registry = "substrate", path = "../../../pdks/sky130" }
9+
substrate = { version = "0.10.3", registry = "substrate", path = "../../../substrate" }
10+
sky130 = { version = "0.10.3", registry = "substrate", path = "../../../pdks/sky130" }
1111
layir = { version = "0.2.1", registry = "substrate", path = "../../../libs/layir" }
12-
gdsconv = { version = "0.2.1", registry = "substrate", path = "../../../libs/gdsconv" }
13-
gds = { version = "0.4.1", registry = "substrate", path = "../../../libs/gds" }
12+
gdsconv = { version = "0.2.2", registry = "substrate", path = "../../../libs/gdsconv" }
13+
gds = { version = "0.4.2", registry = "substrate", path = "../../../libs/gds" }
1414
scir = { version = "0.9.1", registry = "substrate", path = "../../../libs/scir" }
15-
spice = { version = "0.9.2", registry = "substrate", path = "../../../libs/spice" }
15+
spice = { version = "0.9.3", registry = "substrate", path = "../../../libs/spice" }
1616

1717
arcstr = "1"
1818
rust_decimal = "1"
1919
rust_decimal_macros = "1"
2020
# end-code-snippet dependencies
2121

2222
# begin-code-snippet open-dependencies
23-
ngspice = { version = "0.5.2", registry = "substrate", path = "../../../tools/ngspice" }
24-
magic_netgen = { version = "0.1.3", registry = "substrate", path = "../../../tools/magic_netgen" }
23+
ngspice = { version = "0.5.3", registry = "substrate", path = "../../../tools/ngspice" }
24+
magic_netgen = { version = "0.1.4", registry = "substrate", path = "../../../tools/magic_netgen" }
2525
magic = { version = "0.2.1", registry = "substrate", path = "../../../tools/magic" }
2626
# end-code-snippet open-dependencies
2727

2828
# begin-code-snippet cds-dependencies
29-
spectre = { version = "0.11.2", registry = "substrate", path = "../../../tools/spectre" }
30-
quantus = { version = "0.2.2", registry = "substrate", path = "../../../tools/quantus" }
29+
spectre = { version = "0.11.3", registry = "substrate", path = "../../../tools/spectre" }
30+
quantus = { version = "0.2.3", registry = "substrate", path = "../../../tools/quantus" }
3131
pegasus = { version = "0.2.1", registry = "substrate", path = "../../../tools/pegasus" }
3232
# end-code-snippet cds-dependencies

examples/latest/spice_vdivider/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publish = false
66

77
# begin-code-snippet dependencies
88
[dependencies]
9-
substrate = { version = "0.10.2", registry = "substrate", path = "../../../substrate" }
10-
spice = { version = "0.9.2", registry = "substrate", path = "../../../libs/spice" }
9+
substrate = { version = "0.10.3", registry = "substrate", path = "../../../substrate" }
10+
spice = { version = "0.9.3", registry = "substrate", path = "../../../libs/spice" }
1111

1212
rust_decimal = "1"
1313
rust_decimal_macros = "1"

examples/latest/substrate_api_examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
substrate = { version = "0.10.2", registry = "substrate", path = "../../../substrate" }
8+
substrate = { version = "0.10.3", registry = "substrate", path = "../../../substrate" }
99
scir = { version = "0.9.1", registry = "substrate", path = "../../../libs/scir" }
1010

1111
arcstr = "1"

0 commit comments

Comments
 (0)