Skip to content

Commit

Permalink
chore: release main (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku authored Jul 7, 2023
1 parent bdac343 commit c6ff717
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"cache": "0.0.0",
"cli": "0.0.0",
"codegen": "0.1.1",
"codegen": "0.2.0",
"config": "0.1.0",
"dex": "0.0.0",
"diagnostics": "0.1.0",
Expand All @@ -17,17 +17,17 @@
"lvs": "0.0.0",
"netlist/spice": "0.0.0",
"par": "0.0.0",
"pdks/sky130pdk": "0.1.1",
"pdks/sky130pdk": "0.2.0",
"pex": "0.0.0",
"sbm": "0.0.0",
"scg": "0.0.0",
"scir": "0.1.0",
"sde": "0.0.0",
"sim": "0.0.0",
"subfile": "0.0.0",
"substrate": "0.1.1",
"substrate": "0.2.0",
"substrate-api": "0.1.1",
"tests": "0.0.0",
"timing": "0.0.0",
"tools/spectre": "0.1.1"
"tools/spectre": "0.2.0"
}
8 changes: 4 additions & 4 deletions Cargo.lock

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

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

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


### Features

* **reorg:** move substrate-api into substrate ([#155](https://github.com/substrate-labs/substrate2/issues/155)) ([e902a1b](https://github.com/substrate-labs/substrate2/commit/e902a1b603cca6c719770c5cd742e081bfd33e51))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* substrate bumped from <=0.1.1 to 0.2.0

## 0.1.0 (2023-07-07)


Expand Down
4 changes: 2 additions & 2 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codegen"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
include = ["src", "build/docs"]

Expand All @@ -15,7 +15,7 @@ convert_case = "0.6"
[dev-dependencies]
arcstr = "1"
serde = { version = "1", features = ["derive"] }
substrate = { version = "<=0.1.1", registry = "substrate", path = "../substrate" }
substrate = { version = "0.2.0", registry = "substrate", path = "../substrate" }

[lib]
proc-macro = true
15 changes: 15 additions & 0 deletions pdks/sky130pdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
* substrate bumped from 0.1.0 to 0.1.1
* spectre bumped from 0.1.0 to 0.1.1

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


### Features

* **reorg:** move substrate-api into substrate ([#155](https://github.com/substrate-labs/substrate2/issues/155)) ([e902a1b](https://github.com/substrate-labs/substrate2/commit/e902a1b603cca6c719770c5cd742e081bfd33e51))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.1.1 to 0.2.0
* spectre bumped from 0.1.1 to 0.2.0

## 0.1.0 (2023-07-07)


Expand Down
6 changes: 3 additions & 3 deletions pdks/sky130pdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "sky130pdk"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

[dependencies]
substrate = { version = "0.1.1", registry = "substrate", path = "../../substrate" }
spectre = { version = "0.1.1", registry = "substrate", path = "../../tools/spectre" }
substrate = { version = "0.2.0", registry = "substrate", path = "../../substrate" }
spectre = { version = "0.2.0", registry = "substrate", path = "../../tools/spectre" }
rust_decimal = "1.30"
rust_decimal_macros = "1.30"

Expand Down
14 changes: 14 additions & 0 deletions substrate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
* codegen bumped from 0.1.0 to 0.1.1
* substrate_api bumped from 0.1.0 to 0.1.1

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


### Features

* **reorg:** move substrate-api into substrate ([#155](https://github.com/substrate-labs/substrate2/issues/155)) ([e902a1b](https://github.com/substrate-labs/substrate2/commit/e902a1b603cca6c719770c5cd742e081bfd33e51))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* codegen bumped from 0.1.0 to 0.2.0

## 0.1.0 (2023-07-07)


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

[dependencies]
Expand All @@ -17,7 +17,7 @@ ena = "0.14"
duplicate = "1"

cache = { version = "0.1.0", registry = "substrate", path = "../libs/cache" }
codegen = { version = "0.1.0", registry = "substrate", path = "../codegen" }
codegen = { version = "0.2.0", registry = "substrate", path = "../codegen" }
geometry = { version = "0.2.0", registry = "substrate", path = "../libs/geometry" }
gds = { version = "0.1.0", registry = "substrate", path = "../gds" }
opacity = { version = "0.1.0", path = "../libs/opacity", registry = "substrate" }
Expand Down
6 changes: 3 additions & 3 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ approx = "0.5"
lazy_static = "1"

geometry = { version = "0.2.0", registry = "substrate", path = "../libs/geometry" }
substrate = { version = "0.1.1", registry = "substrate", path = "../substrate" }
substrate = { version = "0.2.0", registry = "substrate", path = "../substrate" }
scir = { version = "0.1.0", registry = "substrate", path = "../scir" }
cache = { version = "0.1.0", registry = "substrate", path = "../libs/cache" }
spice = { version = "0.0.0", registry = "substrate", path = "../netlist/spice" }
spectre = { version = "0.1.1", registry = "substrate", path = "../tools/spectre" }
sky130pdk = { version = "0.1.1", registry = "substrate", path = "../pdks/sky130pdk" }
spectre = { version = "0.2.0", registry = "substrate", path = "../tools/spectre" }
sky130pdk = { version = "0.2.0", registry = "substrate", path = "../pdks/sky130pdk" }

[features]
spectre = []
Expand Down
14 changes: 14 additions & 0 deletions tools/spectre/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
* dependencies
* substrate bumped from 0.1.0 to 0.1.1

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


### Features

* **reorg:** move substrate-api into substrate ([#155](https://github.com/substrate-labs/substrate2/issues/155)) ([e902a1b](https://github.com/substrate-labs/substrate2/commit/e902a1b603cca6c719770c5cd742e081bfd33e51))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* substrate bumped from 0.1.1 to 0.2.0

## 0.1.0 (2023-07-07)


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

[dependencies]
Expand All @@ -15,5 +15,5 @@ serde = { version = "1", features = ["derive"] }
tracing = "0.1"

scir = { version = "0.1.0", registry = "substrate", path = "../../scir" }
substrate = { version = "0.1.1", registry = "substrate", path = "../../substrate" }
substrate = { version = "0.2.0", registry = "substrate", path = "../../substrate" }
opacity = { version = "0.1.0", path = "../../libs/opacity", registry = "substrate" }

0 comments on commit c6ff717

Please sign in to comment.