Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku committed Jan 16, 2024
1 parent c72bbc8 commit 3f1dab5
Show file tree
Hide file tree
Showing 40 changed files with 440 additions and 116 deletions.
38 changes: 19 additions & 19 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"codegen": "0.8.1",
"config": "0.2.5",
"docs/examples": "0.5.1",
"libs/atoll": "0.1.3",
"libs/cache": "0.5.0",
"codegen": "0.9.0",
"config": "0.3.0",
"docs/examples": "0.6.0",
"libs/atoll": "0.2.0",
"libs/cache": "0.6.0",
"libs/diagnostics": "0.3.0",
"libs/enumify": "0.1.0",
"libs/enumify_macros": "0.1.0",
"libs/gds": "0.3.0",
"libs/geometry": "0.5.0",
"libs/geometry_macros": "0.0.1",
"libs/enumify": "0.1.1",
"libs/enumify_macros": "0.1.1",
"libs/gds": "0.3.1",
"libs/geometry": "0.6.0",
"libs/geometry_macros": "0.0.2",
"libs/pathtree": "0.2.0",
"libs/scir": "0.7.0",
"libs/spice": "0.7.1",
"libs/nutlex": "0.2.0",
"libs/type_dispatch": "0.3.0",
"libs/type_dispatch_macros": "0.3.0",
"libs/scir": "0.8.0",
"libs/spice": "0.8.0",
"libs/nutlex": "0.2.1",
"libs/type_dispatch": "0.4.0",
"libs/type_dispatch_macros": "0.3.1",
"libs/uniquify": "0.2.0",
"pdks/sky130pdk": "0.8.1",
"substrate": "0.8.1",
"pdks/sky130pdk": "0.9.0",
"substrate": "0.9.0",
"tests": "0.0.0",
"tools/ngspice": "0.3.1",
"tools/spectre": "0.9.1"
"tools/ngspice": "0.4.0",
"tools/spectre": "0.10.0"
}
38 changes: 19 additions & 19 deletions Cargo.lock

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

27 changes: 27 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,33 @@
* spectre bumped from <=0.9.0 to <=0.9.1
* spice bumped from <=0.7.0 to <=0.7.1

## [0.9.0](https://github.com/ucb-substrate/substrate2/compare/codegen-v0.8.1...codegen-v0.9.0) (2024-01-16)


### Features

* **atoll:** implement first cut ATOLL implementation ([#357](https://github.com/ucb-substrate/substrate2/issues/357)) ([372b927](https://github.com/ucb-substrate/substrate2/commit/372b9275c9d9c5cd58603f5a462a5e4b66b64cf7))
* **montecarlo:** add Monte Carlo simulation support to Spectre plugin ([#347](https://github.com/ucb-substrate/substrate2/issues/347)) ([cc9dfe4](https://github.com/ucb-substrate/substrate2/commit/cc9dfe42db5be1a8aaeaf3fb81992a0ad7251ef8))
* **refactor:** significantly refactor IO APIs ([#348](https://github.com/ucb-substrate/substrate2/issues/348)) ([c85d043](https://github.com/ucb-substrate/substrate2/commit/c85d04334a0ba1740f9990b91fb55ab1f2ef77c5))


### Bug Fixes

* **gds:** use u16 instead of u8 for GDS layerspecs ([#339](https://github.com/ucb-substrate/substrate2/issues/339)) ([4d1fce2](https://github.com/ucb-substrate/substrate2/commit/4d1fce25f9493c6975d43dba96ccaa4c0cf4a686))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* examples bumped from 0.5.1 to 0.6.0
* type_dispatch bumped from 0.3.0 to 0.4.0
* dev-dependencies
* substrate bumped from <=0.8.1 to <=0.9.0
* sky130pdk bumped from <=0.8.1 to <=0.9.0
* spectre bumped from <=0.9.1 to <=0.10.0
* spice bumped from <=0.7.1 to <=0.8.0

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


Expand Down
14 changes: 7 additions & 7 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codegen"
version = "0.8.1"
version = "0.9.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.5.1", registry = "substrate", path = "../docs/examples" }
type_dispatch = { version = "0.3.0", registry = "substrate", path = "../libs/type_dispatch" }
examples = { version = "0.6.0", registry = "substrate", path = "../docs/examples" }
type_dispatch = { version = "0.4.0", registry = "substrate", path = "../libs/type_dispatch" }

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

Expand Down
14 changes: 14 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
* dependencies
* cache bumped from 0.4.0 to 0.5.0

## [0.3.0](https://github.com/ucb-substrate/substrate2/compare/config-v0.2.5...config-v0.3.0) (2024-01-16)


### Features

* **grid:** add ATOLL LCM routing grid and layer stack definition ([#338](https://github.com/ucb-substrate/substrate2/issues/338)) ([1e1ad90](https://github.com/ucb-substrate/substrate2/commit/1e1ad90d02b50dd0dd15516c306971241bf30b7c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* cache bumped from 0.5.0 to 0.6.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.5"
version = "0.3.0"
edition = "2021"

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

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

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

## [0.6.0](https://github.com/ucb-substrate/substrate2/compare/examples-v0.5.1...examples-v0.6.0) (2024-01-16)


### Features

* **atoll:** fix sky130 layer setup ([#346](https://github.com/ucb-substrate/substrate2/issues/346)) ([07906db](https://github.com/ucb-substrate/substrate2/commit/07906db5edbe418df795c6e40af770e4dfc8c5ec))
* **atoll:** implement first cut ATOLL implementation ([#357](https://github.com/ucb-substrate/substrate2/issues/357)) ([372b927](https://github.com/ucb-substrate/substrate2/commit/372b9275c9d9c5cd58603f5a462a5e4b66b64cf7))
* **docs:** update docs for new simulation APIs ([#326](https://github.com/ucb-substrate/substrate2/issues/326)) ([ef133df](https://github.com/ucb-substrate/substrate2/commit/ef133dfac5f352121fe0e561b76541d5af62970e))
* **refactor:** significantly refactor IO APIs ([#348](https://github.com/ucb-substrate/substrate2/issues/348)) ([c85d043](https://github.com/ucb-substrate/substrate2/commit/c85d04334a0ba1740f9990b91fb55ab1f2ef77c5))


### Bug Fixes

* **layout:** fix issues in GDS export and ATOLL API ([#341](https://github.com/ucb-substrate/substrate2/issues/341)) ([08930b1](https://github.com/ucb-substrate/substrate2/commit/08930b1b25d018c20758986e206dc8882df782af))


### Dependencies

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

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


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.5.1"
version = "0.6.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.8.1", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.8.1", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.9.1", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.7.1", registry = "substrate", path = "../../libs/spice" }
substrate = { version = "<=0.9.0", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.9.0", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.10.0", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.8.0", registry = "substrate", path = "../../libs/spice" }

[lib]
proc-macro = true
Loading

0 comments on commit 3f1dab5

Please sign in to comment.