Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"codegen": "0.7.1",
"config": "0.2.4",
"docs/examples": "0.4.1",
"libs/atoll": "0.1.1",
"libs/cache": "0.4.0",
"codegen": "0.8.0",
"config": "0.2.5",
"docs/examples": "0.5.0",
"libs/atoll": "0.1.2",
"libs/cache": "0.5.0",
"libs/diagnostics": "0.3.0",
"libs/enumify": "0.1.0",
"libs/enumify_macros": "0.1.0",
Expand All @@ -12,14 +12,14 @@
"libs/geometry_macros": "0.0.1",
"libs/pathtree": "0.2.0",
"libs/scir": "0.7.0",
"libs/spice": "0.6.0",
"libs/spice": "0.7.0",
"libs/nutlex": "0.2.0",
"libs/type_dispatch": "0.3.0",
"libs/type_dispatch_macros": "0.3.0",
"libs/uniquify": "0.2.0",
"pdks/sky130pdk": "0.7.1",
"substrate": "0.7.1",
"pdks/sky130pdk": "0.8.0",
"substrate": "0.8.0",
"tests": "0.0.0",
"tools/ngspice": "0.2.0",
"tools/spectre": "0.8.0"
"tools/ngspice": "0.3.0",
"tools/spectre": "0.9.0"
}
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,27 @@
* spectre bumped from <=0.7.0 to <=0.8.0
* spice bumped from <=0.5.0 to <=0.6.0

## [0.8.0](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.7.1...codegen-v0.8.0) (2023-11-25)


### Features

* **docs:** update tutorials and revamp documentation website ([#315](https://github.com/ucb-substrate/substrate2/issues/315)) ([49bdf7f](https://github.com/ucb-substrate/substrate2/commit/49bdf7ff61e2fdbf19022697d518ad7fbafb465f))
* **simulation:** improve simulation APIs ([#320](https://github.com/ucb-substrate/substrate2/issues/320)) ([4ed59a1](https://github.com/ucb-substrate/substrate2/commit/4ed59a1283f9546e8336cc96015bd87c55682777))
* **stdcells:** add standard cell support to Sky130 PDK ([#323](https://github.com/ucb-substrate/substrate2/issues/323)) ([0b2048e](https://github.com/ucb-substrate/substrate2/commit/0b2048ed44d89c5de87380cac48a4bbff2b4c20a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* examples bumped from 0.4.1 to 0.5.0
* dev-dependencies
* substrate bumped from <=0.7.1 to <=0.8.0
* sky130pdk bumped from <=0.7.1 to <=0.8.0
* spectre bumped from <=0.8.0 to <=0.9.0
* spice bumped from <=0.6.0 to <=0.7.0

## [0.7.0](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.6.1...codegen-v0.7.0) (2023-11-02)


Expand Down
12 changes: 6 additions & 6 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codegen"
version = "0.7.1"
version = "0.8.0"
edition = "2021"

[dependencies]
Expand All @@ -12,16 +12,16 @@ proc-macro-crate = "1"
proc-macro-error = "1"
convert_case = "0.6"

examples = { version = "0.4.1", registry = "substrate", path = "../docs/examples" }
examples = { version = "0.5.0", registry = "substrate", path = "../docs/examples" }
type_dispatch = { version = "0.3.0", registry = "substrate", path = "../libs/type_dispatch" }

[dev-dependencies]
arcstr = "1"
serde = { version = "1", features = ["derive"] }
substrate = { version = "<=0.7.1", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.7.1", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.8.0", registry = "substrate", path = "../tools/spectre" }
spice = { version = "<=0.6.0", registry = "substrate", path = "../libs/spice" }
substrate = { version = "<=0.8.0", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.8.0", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.9.0", registry = "substrate", path = "../tools/spectre" }
spice = { version = "<=0.7.0", registry = "substrate", path = "../libs/spice" }
rust_decimal = "1.30"
rust_decimal_macros = "1.30"

Expand Down
4 changes: 4 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
* dependencies
* cache bumped from 0.3.0 to 0.3.1

* The following workspace dependencies were updated
* dependencies
* cache bumped from 0.4.0 to 0.5.0

## [0.2.4](https://github.com/ucb-substrate/substrate2/compare/config-v0.2.3...config-v0.2.4) (2023-11-02)


Expand Down
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "config"
version = "0.2.4"
version = "0.2.5"
edition = "2021"

[dependencies]
Expand All @@ -11,7 +11,7 @@ toml_edit = "0.20"
log = "0.4"
toml = "0.8"

cache = { version = "0.4.0", registry = "substrate", path = "../libs/cache" }
cache = { version = "0.5.0", registry = "substrate", path = "../libs/cache" }

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48"
Expand Down
18 changes: 18 additions & 0 deletions docs/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,24 @@
* spectre bumped from <=0.7.0 to <=0.8.0
* spice bumped from <=0.5.0 to <=0.6.0

## [0.5.0](https://github.com/ucb-substrate/substrate2/compare/examples-v0.4.1...examples-v0.5.0) (2023-11-25)


### Features

* **docs:** update tutorials and revamp documentation website ([#315](https://github.com/ucb-substrate/substrate2/issues/315)) ([49bdf7f](https://github.com/ucb-substrate/substrate2/commit/49bdf7ff61e2fdbf19022697d518ad7fbafb465f))
* **simulation:** improve simulation APIs ([#320](https://github.com/ucb-substrate/substrate2/issues/320)) ([4ed59a1](https://github.com/ucb-substrate/substrate2/commit/4ed59a1283f9546e8336cc96015bd87c55682777))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* substrate bumped from <=0.7.1 to <=0.8.0
* sky130pdk bumped from <=0.7.1 to <=0.8.0
* spectre bumped from <=0.8.0 to <=0.9.0
* spice bumped from <=0.6.0 to <=0.7.0

## [0.4.0](https://github.com/ucb-substrate/substrate2/compare/examples-v0.3.1...examples-v0.4.0) (2023-11-02)


Expand Down
10 changes: 5 additions & 5 deletions docs/examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.4.1"
version = "0.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -18,10 +18,10 @@ arcstr = "1"
serde = { version = "1", features = ["derive"] }
rust_decimal = "1.30"
rust_decimal_macros = "1.30"
substrate = { version = "<=0.7.1", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.7.1", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.8.0", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.6.0", registry = "substrate", path = "../../libs/spice" }
substrate = { version = "<=0.8.0", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.8.0", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.9.0", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.7.0", registry = "substrate", path = "../../libs/spice" }

[lib]
proc-macro = true
4 changes: 4 additions & 0 deletions libs/atoll/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* dependencies
* substrate bumped from 0.7.0 to 0.7.1

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.7.1 to 0.8.0

## 0.1.0 (2023-11-02)


Expand Down
4 changes: 2 additions & 2 deletions libs/atoll/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "atoll"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Automatic transformation of logical layout"
license = "BSD-3-Clause"

[dependencies]
substrate = { version = "0.7.1", registry = "substrate", path = "../../substrate" }
substrate = { version = "0.8.0", registry = "substrate", path = "../../substrate" }
grid = "0.11"
7 changes: 7 additions & 0 deletions libs/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.0](https://github.com/ucb-substrate/substrate2/compare/cache-v0.4.0...cache-v0.5.0) (2023-11-25)


### Features

* **cache:** bump dependencies ([#325](https://github.com/ucb-substrate/substrate2/issues/325)) ([7506a8a](https://github.com/ucb-substrate/substrate2/commit/7506a8ad84d0101b8a8b654bd98face751beae81))

## [0.4.0](https://github.com/ucb-substrate/substrate2/compare/cache-v0.3.1...cache-v0.4.0) (2023-11-02)


Expand Down
2 changes: 1 addition & 1 deletion libs/cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cache"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "A general purpose cache with possibly multiple remote servers for storing and retrieving data."
license = "BSD-3-Clause"
Expand Down
15 changes: 15 additions & 0 deletions libs/spice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.7.0](https://github.com/ucb-substrate/substrate2/compare/spice-v0.6.0...spice-v0.7.0) (2023-11-25)


### Features

* **simulation:** improve simulation APIs ([#320](https://github.com/ucb-substrate/substrate2/issues/320)) ([4ed59a1](https://github.com/ucb-substrate/substrate2/commit/4ed59a1283f9546e8336cc96015bd87c55682777))
* **stdcells:** add standard cell support to Sky130 PDK ([#323](https://github.com/ucb-substrate/substrate2/issues/323)) ([0b2048e](https://github.com/ucb-substrate/substrate2/commit/0b2048ed44d89c5de87380cac48a4bbff2b4c20a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.7.1 to 0.8.0

## [0.6.0](https://github.com/ucb-substrate/substrate2/compare/spice-v0.5.0...spice-v0.6.0) (2023-11-04)


Expand Down
4 changes: 2 additions & 2 deletions libs/spice/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spice"
version = "0.6.0"
version = "0.7.0"
edition = "2021"

[dependencies]
Expand All @@ -13,6 +13,6 @@ rust_decimal = "1"
rust_decimal_macros = "1"

scir = { version = "0.7.0", registry = "substrate", path = "../scir" }
substrate = { version = "0.7.1", registry = "substrate", path = "../../substrate" }
substrate = { version = "0.8.0", registry = "substrate", path = "../../substrate" }
enumify = { version = "0.1.0", path = "../enumify", registry = "substrate" }
regex = "1.10.2"
18 changes: 18 additions & 0 deletions pdks/sky130pdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@
* ngspice bumped from 0.1.0 to 0.2.0
* spice bumped from 0.5.0 to 0.6.0

## [0.8.0](https://github.com/ucb-substrate/substrate2/compare/sky130pdk-v0.7.1...sky130pdk-v0.8.0) (2023-11-25)


### Features

* **simulation:** improve simulation APIs ([#320](https://github.com/ucb-substrate/substrate2/issues/320)) ([4ed59a1](https://github.com/ucb-substrate/substrate2/commit/4ed59a1283f9546e8336cc96015bd87c55682777))
* **stdcells:** add standard cell support to Sky130 PDK ([#323](https://github.com/ucb-substrate/substrate2/issues/323)) ([0b2048e](https://github.com/ucb-substrate/substrate2/commit/0b2048ed44d89c5de87380cac48a4bbff2b4c20a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.7.1 to 0.8.0
* spectre bumped from 0.8.0 to 0.9.0
* ngspice bumped from 0.2.0 to 0.3.0
* spice bumped from 0.6.0 to 0.7.0

## [0.7.0](https://github.com/ucb-substrate/substrate2/compare/sky130pdk-v0.6.1...sky130pdk-v0.7.0) (2023-11-02)


Expand Down
10 changes: 5 additions & 5 deletions pdks/sky130pdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "sky130pdk"
version = "0.7.1"
version = "0.8.0"
edition = "2021"

[dependencies]
substrate = { version = "0.7.1", registry = "substrate", path = "../../substrate" }
substrate = { version = "0.8.0", registry = "substrate", path = "../../substrate" }
scir = { version = "0.7.0", registry = "substrate", path = "../../libs/scir" }
spectre = { version = "0.8.0", registry = "substrate", path = "../../tools/spectre" }
ngspice = { version = "0.2.0", registry = "substrate", path = "../../tools/ngspice" }
spice = { version = "0.6.0", registry = "substrate", path = "../../libs/spice" }
spectre = { version = "0.9.0", registry = "substrate", path = "../../tools/spectre" }
ngspice = { version = "0.3.0", registry = "substrate", path = "../../tools/ngspice" }
spice = { version = "0.7.0", registry = "substrate", path = "../../libs/spice" }

rust_decimal = "1.32"
rust_decimal_macros = "1.32"
Expand Down
Loading