Skip to content

Commit 290c047

Browse files
committed
chore: release main
1 parent dc8a6fd commit 290c047

Some content is hidden

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

48 files changed

+312
-131
lines changed

.release-please-manifest.json

+17-17
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,29 +16,29 @@
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",
21-
"libs/geometry": "0.7.1",
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",
2424
"libs/psfparser": "0.1.4",
2525
"libs/scir": "0.9.1",
26-
"libs/spice": "0.9.2",
27-
"libs/layir": "0.2.1",
28-
"libs/lefdef": "0.2.1",
26+
"libs/spice": "0.9.3",
27+
"libs/layir": "0.2.2",
28+
"libs/lefdef": "0.2.2",
2929
"libs/macrotools": "0.2.0",
3030
"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.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

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

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

3+
## [0.2.1](https://github.com/ucb-substrate/substrate2/compare/examples-v0.2.0...examples-v0.2.1) (2025-03-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+
* **justfile:** remove extra targets from justfile, fix formatting ([#588](https://github.com/ucb-substrate/substrate2/issues/588)) ([efc3591](https://github.com/ucb-substrate/substrate2/commit/efc35916dcfc4fe04ef59cffe9155f5069916d07))
10+
311
## [0.2.0](https://github.com/ucb-substrate/substrate2/compare/examples-v0.1.0...examples-v0.2.0) (2025-01-23)
412

513

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

0 commit comments

Comments
 (0)