Skip to content

Commit

Permalink
chore: release main (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku authored Nov 2, 2023
1 parent e5ba06a commit 77669d1
Show file tree
Hide file tree
Showing 33 changed files with 429 additions and 94 deletions.
30 changes: 15 additions & 15 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"codegen": "0.6.1",
"config": "0.2.3",
"docs/examples": "0.3.1",
"libs/atoll": "0.0.0",
"libs/cache": "0.3.1",
"codegen": "0.7.0",
"config": "0.2.4",
"docs/examples": "0.4.0",
"libs/atoll": "0.1.0",
"libs/cache": "0.4.0",
"libs/diagnostics": "0.3.0",
"libs/enumify": "0.0.0",
"libs/enumify_macros": "0.0.0",
"libs/enumify": "0.1.0",
"libs/enumify_macros": "0.1.0",
"libs/gds": "0.3.0",
"libs/geometry": "0.4.0",
"libs/geometry": "0.5.0",
"libs/geometry_macros": "0.0.1",
"libs/pathtree": "0.2.0",
"libs/scir": "0.5.0",
"libs/spice": "0.4.0",
"libs/nutlex": "0.1.0",
"libs/scir": "0.6.0",
"libs/spice": "0.5.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.6.1",
"substrate": "0.6.1",
"pdks/sky130pdk": "0.7.0",
"substrate": "0.7.0",
"tests": "0.0.0",
"tools/ngspice": "0.0.0",
"tools/spectre": "0.6.1"
"tools/ngspice": "0.1.0",
"tools/spectre": "0.7.0"
}
30 changes: 15 additions & 15 deletions Cargo.lock

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

22 changes: 22 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@
* dev-dependencies
* substrate bumped from 0.1.0 to 0.1.1

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


### Features

* **impl-dispatch:** remove impl dispatch in favor of trait bounds ([#283](https://github.com/ucb-substrate/substrate2/issues/283)) ([d954115](https://github.com/ucb-substrate/substrate2/commit/d9541152db52aebde928e41c0d800453e906d62b))
* **netlister:** reduce duplicate code between spectre and SPICE netlisters ([#261](https://github.com/ucb-substrate/substrate2/issues/261)) ([5ba3623](https://github.com/ucb-substrate/substrate2/commit/5ba36230e653e4dc77819c5c50b527311768cd83))
* **primitives:** revamp schematic primitives ([#291](https://github.com/ucb-substrate/substrate2/issues/291)) ([e5ba06a](https://github.com/ucb-substrate/substrate2/commit/e5ba06ab10008b72e78397ad70781caa6bc61791))
* **refactor:** rename Has_ and Has_Data ([#282](https://github.com/ucb-substrate/substrate2/issues/282)) ([2018153](https://github.com/ucb-substrate/substrate2/commit/2018153686dd7ef3df0e10874db3c656ca245026))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* examples bumped from 0.3.1 to 0.4.0
* dev-dependencies
* substrate bumped from <=0.6.1 to <=0.7.0
* sky130pdk bumped from <=0.6.1 to <=0.7.0
* spectre bumped from <=0.6.1 to <=0.7.0
* spice bumped from <=0.4.0 to <=0.5.0

## [0.6.1](https://github.com/substrate-labs/substrate2/compare/codegen-v0.6.0...codegen-v0.6.1) (2023-08-08)


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.6.1"
version = "0.7.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.3.1", registry = "substrate", path = "../docs/examples" }
examples = { version = "0.4.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.6.1", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.6.1", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.6.1", registry = "substrate", path = "../tools/spectre" }
spice = { version = "<=0.4.0", registry = "substrate", path = "../libs/spice" }
substrate = { version = "<=0.7.0", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.7.0", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.7.0", registry = "substrate", path = "../tools/spectre" }
spice = { version = "<=0.5.0", registry = "substrate", path = "../libs/spice" }

[lib]
proc-macro = true
14 changes: 14 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@
* dependencies
* cache bumped from 0.3.0 to 0.3.1

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


### Bug Fixes

* **deps:** update rust crate toml_edit to 0.20 ([#307](https://github.com/ucb-substrate/substrate2/issues/307)) ([7681606](https://github.com/ucb-substrate/substrate2/commit/7681606c082c8f7b0ef98b114348c90f6ea83d16))


### Dependencies

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

## [0.2.0](https://github.com/substrate-labs/substrate2/compare/config-v0.1.0...config-v0.2.0) (2023-07-23)


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.3"
version = "0.2.4"
edition = "2021"

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

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

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

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


### Features

* **impl-dispatch:** remove impl dispatch in favor of trait bounds ([#283](https://github.com/ucb-substrate/substrate2/issues/283)) ([d954115](https://github.com/ucb-substrate/substrate2/commit/d9541152db52aebde928e41c0d800453e906d62b))
* **polygon:** polygon implemented in geometry ([#263](https://github.com/ucb-substrate/substrate2/issues/263)) ([4508570](https://github.com/ucb-substrate/substrate2/commit/45085706a30a12f4af6c5e3f642ca55b4c32dd24))
* **primitives:** revamp schematic primitives ([#291](https://github.com/ucb-substrate/substrate2/issues/291)) ([e5ba06a](https://github.com/ucb-substrate/substrate2/commit/e5ba06ab10008b72e78397ad70781caa6bc61791))
* **refactor:** rename Has_ and Has_Data ([#282](https://github.com/ucb-substrate/substrate2/issues/282)) ([2018153](https://github.com/ucb-substrate/substrate2/commit/2018153686dd7ef3df0e10874db3c656ca245026))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* substrate bumped from <=0.6.1 to <=0.7.0
* sky130pdk bumped from <=0.6.1 to <=0.7.0
* spectre bumped from <=0.6.1 to <=0.7.0
* spice bumped from <=0.4.0 to <=0.5.0

## [0.3.0](https://github.com/substrate-labs/substrate2/compare/examples-v0.2.0...examples-v0.3.0) (2023-08-08)


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.3.1"
version = "0.4.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -16,10 +16,10 @@ textwrap = "0.16"
[dev-dependencies]
arcstr = "1"
serde = { version = "1", features = ["derive"] }
substrate = { version = "<=0.6.1", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.6.1", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.6.1", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.4.0", registry = "substrate", path = "../../libs/spice" }
substrate = { version = "<=0.7.0", registry = "substrate", path = "../../substrate" }
sky130pdk = { version = "<=0.7.0", registry = "substrate", path = "../../pdks/sky130pdk" }
spectre = { version = "<=0.7.0", registry = "substrate", path = "../../tools/spectre" }
spice = { version = "<=0.5.0", registry = "substrate", path = "../../libs/spice" }

[lib]
proc-macro = true
21 changes: 21 additions & 0 deletions libs/atoll/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

## 0.1.0 (2023-11-02)


### Features

* add BFS router for ATOLL ([#313](https://github.com/ucb-substrate/substrate2/issues/313)) ([eaf4cc4](https://github.com/ucb-substrate/substrate2/commit/eaf4cc4336d34f256f36a8564725fb313527f959))
* **docs:** add atoll design docs ([#293](https://github.com/ucb-substrate/substrate2/issues/293)) ([996f1bc](https://github.com/ucb-substrate/substrate2/commit/996f1bcd0f071ec845fa60ff45f404cd71d42632))


### Bug Fixes

* **deps:** update rust crate grid to 0.11 ([#311](https://github.com/ucb-substrate/substrate2/issues/311)) ([2b5a093](https://github.com/ucb-substrate/substrate2/commit/2b5a09346c879c66f46c5de7e7bb4c5210757a6a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.6.1 to 0.7.0
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.0.0"
version = "0.1.0"
edition = "2021"
description = "Automatic transformation of logical layout"
license = "BSD-3-Clause"

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

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


### Features

* **primitives:** revamp schematic primitives ([#291](https://github.com/ucb-substrate/substrate2/issues/291)) ([e5ba06a](https://github.com/ucb-substrate/substrate2/commit/e5ba06ab10008b72e78397ad70781caa6bc61791))


### Bug Fixes

* **deps:** update rust crate prost-types to 0.12 ([#300](https://github.com/ucb-substrate/substrate2/issues/300)) ([06ca94e](https://github.com/ucb-substrate/substrate2/commit/06ca94e903b6996876585f162f82ff8615025710))

## [0.3.1](https://github.com/substrate-labs/substrate2/compare/cache-v0.3.0...cache-v0.3.1) (2023-08-08)


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.3.1"
version = "0.4.0"
edition = "2021"
description = "A general purpose cache with possibly multiple remote servers for storing and retrieving data."
license = "BSD-3-Clause"
Expand Down
Loading

0 comments on commit 77669d1

Please sign in to comment.