Skip to content

Commit

Permalink
chore: release main (#247)
Browse files Browse the repository at this point in the history
Co-authored-by: Rahul Kumar <[email protected]>
  • Loading branch information
rohanku and rahulk29 authored Aug 8, 2023
1 parent e7e45cc commit dc7307e
Show file tree
Hide file tree
Showing 32 changed files with 280 additions and 81 deletions.
29 changes: 15 additions & 14 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"codegen": "0.5.0",
"config": "0.2.2",
"docs/examples": "0.2.0",
"libs/cache": "0.3.0",
"libs/diagnostics": "0.2.0",
"codegen": "0.6.0",
"config": "0.2.3",
"docs/examples": "0.3.0",
"libs/cache": "0.3.1",
"libs/diagnostics": "0.3.0",
"libs/gds": "0.3.0",
"libs/geometry": "0.3.0",
"libs/geometry": "0.4.0",
"libs/opacity": "0.1.0",
"libs/pathtree": "0.2.0",
"libs/scir": "0.4.0",
"libs/spice": "0.3.0",
"libs/spice_rawfile": "0.0.0",
"libs/type_dispatch": "0.2.0",
"libs/type_dispatch_macros": "0.2.0",
"libs/scir": "0.5.0",
"libs/spice": "0.4.0",
"libs/spice_rawfile": "0.1.0",
"libs/type_dispatch": "0.3.0",
"libs/type_dispatch_macros": "0.3.0",
"libs/uniquify": "0.2.0",
"pdks/sky130pdk": "0.5.0",
"substrate": "0.5.0",
"pdks/sky130pdk": "0.6.0",
"substrate": "0.6.0",
"tests": "0.0.0",
"tools/spectre": "0.5.0"
"tools/spectre": "0.6.0",
"libs/geometry_macros": "0.0.1"
}
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.

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

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


### Features

* **codegen:** derive Block macro adds required trait bounds by default ([#249](https://github.com/substrate-labs/substrate2/issues/249)) ([892bef5](https://github.com/substrate-labs/substrate2/commit/892bef585548264e3fcdcc2e6523a2321c6c6897))
* **codegen:** insert appropriate bounds in Io, SchematicType, LayoutType proc macros ([#251](https://github.com/substrate-labs/substrate2/issues/251)) ([33dcc79](https://github.com/substrate-labs/substrate2/commit/33dcc797fdbeb21ad046093e655acf965fd99321))
* **macros:** refactor macro reexports ([#250](https://github.com/substrate-labs/substrate2/issues/250)) ([a332717](https://github.com/substrate-labs/substrate2/commit/a332717e549fdea50306067e1c92dc60293aed4c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* examples bumped from 0.2.0 to 0.3.0
* type_dispatch bumped from 0.2.0 to 0.3.0
* dev-dependencies
* substrate bumped from <=0.5.0 to <=0.6.0
* sky130pdk bumped from <=0.5.0 to <=0.6.0
* spectre bumped from <=0.5.0 to <=0.6.0

## [0.5.0](https://github.com/substrate-labs/substrate2/compare/codegen-v0.4.0...codegen-v0.5.0) (2023-08-05)


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.5.0"
version = "0.6.0"
edition = "2021"

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

examples = { version = "0.2.0", registry = "substrate", path = "../docs/examples" }
type_dispatch = { version = "0.2.0", registry = "substrate", path = "../libs/type_dispatch" }
examples = { version = "0.3.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.5.0", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.5.0", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.5.0", registry = "substrate", path = "../tools/spectre" }
substrate = { version = "<=0.6.0", registry = "substrate", path = "../substrate" }
sky130pdk = { version = "<=0.6.0", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "<=0.6.0", registry = "substrate", path = "../tools/spectre" }

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

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

## [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.2"
version = "0.2.3"
edition = "2021"

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

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

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48"
Expand Down
17 changes: 17 additions & 0 deletions docs/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

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


### Features

* **codegen:** insert appropriate bounds in Io, SchematicType, LayoutType proc macros ([#251](https://github.com/substrate-labs/substrate2/issues/251)) ([33dcc79](https://github.com/substrate-labs/substrate2/commit/33dcc797fdbeb21ad046093e655acf965fd99321))
* **macros:** refactor macro reexports ([#250](https://github.com/substrate-labs/substrate2/issues/250)) ([a332717](https://github.com/substrate-labs/substrate2/commit/a332717e549fdea50306067e1c92dc60293aed4c))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* substrate bumped from <=0.5.0 to <=0.6.0
* sky130pdk bumped from <=0.5.0 to <=0.6.0
* spectre bumped from <=0.5.0 to <=0.6.0

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


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

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

[lib]
proc-macro = true
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.3.1](https://github.com/substrate-labs/substrate2/compare/cache-v0.3.0...cache-v0.3.1) (2023-08-08)


### Bug Fixes

* **tests:** fix hanging test ([#246](https://github.com/substrate-labs/substrate2/issues/246)) ([b60c7f2](https://github.com/substrate-labs/substrate2/commit/b60c7f26db1993069d542d8333e173293f4c217b))

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


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.0"
version = "0.3.1"
edition = "2021"
description = "A general purpose cache with possibly multiple remote servers for storing and retrieving data."
license = "BSD-3-Clause"
Expand Down
7 changes: 7 additions & 0 deletions libs/diagnostics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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


### Features

* **validation:** create type for unvalidated SCIR library ([#252](https://github.com/substrate-labs/substrate2/issues/252)) ([1550a22](https://github.com/substrate-labs/substrate2/commit/1550a22b9a1c9f7cd9717feaa45d00487cc8848e))

## [0.2.0](https://github.com/substrate-labs/substrate2/compare/diagnostics-v0.1.0...diagnostics-v0.2.0) (2023-08-04)


Expand Down
2 changes: 1 addition & 1 deletion libs/diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diagnostics"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

[dependencies]
Expand Down
14 changes: 14 additions & 0 deletions libs/geometry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.4.0](https://github.com/substrate-labs/substrate2/compare/geometry-v0.3.0...geometry-v0.4.0) (2023-08-08)


### Features

* **macros:** refactor macro reexports ([#250](https://github.com/substrate-labs/substrate2/issues/250)) ([a332717](https://github.com/substrate-labs/substrate2/commit/a332717e549fdea50306067e1c92dc60293aed4c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* geometry_macros bumped from 0.0.0 to 0.0.1

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


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

[dependencies]
Expand All @@ -9,4 +9,4 @@ array_map = { version = "0.4", features = ["derive", "serde", "std"] }
impl-trait-for-tuples = "0.2"
approx = "0.5"

geometry_macros = { version = "0.0.0", registry = "substrate", path = "../geometry_macros" }
geometry_macros = { version = "0.0.1", registry = "substrate", path = "../geometry_macros" }
4 changes: 2 additions & 2 deletions libs/geometry_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geometry_macros"
version = "0.0.0"
version = "0.0.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -13,7 +13,7 @@ proc-macro2 = "1"
proc-macro-crate = "1"
proc-macro-error = "1"

type_dispatch = { version = "0.2.0", registry = "substrate", path = "../type_dispatch" }
type_dispatch = { version = "0.3.0", registry = "substrate", path = "../type_dispatch" }

[lib]
proc-macro = true
Loading

0 comments on commit dc7307e

Please sign in to comment.