-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
779 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
{ | ||
"bins/cdl2spice": "0.0.0", | ||
"codegen": "0.8.1", | ||
"config": "0.2.5", | ||
"docs/snippets": "0.5.1", | ||
"libs/atoll": "0.1.3", | ||
"libs/cache": "0.5.0", | ||
"bins/cdl2spice": "0.1.0", | ||
"codegen": "0.8.2", | ||
"config": "0.2.6", | ||
"docs/snippets": "0.5.2", | ||
"libs/atoll": "0.1.4", | ||
"libs/cache": "0.5.1", | ||
"libs/diagnostics": "0.3.0", | ||
"libs/enumify": "0.1.0", | ||
"libs/enumify_macros": "0.1.0", | ||
"libs/gds": "0.3.0", | ||
"libs/gdsconv": "0.1.0", | ||
"libs/geometry": "0.5.0", | ||
"libs/enumify_macros": "0.1.1", | ||
"libs/gds": "0.3.1", | ||
"libs/gdsconv": "0.1.1", | ||
"libs/geometry": "0.5.1", | ||
"libs/geometry_macros": "0.0.1", | ||
"libs/pathtree": "0.2.0", | ||
"libs/scir": "0.7.0", | ||
"libs/spice": "0.7.1", | ||
"libs/layir": "0.1.0", | ||
"libs/lefdef": "0.0.0", | ||
"libs/macrotools": "0.0.0", | ||
"libs/scir": "0.7.1", | ||
"libs/spice": "0.7.2", | ||
"libs/layir": "0.1.1", | ||
"libs/lefdef": "0.1.0", | ||
"libs/macrotools": "0.1.0", | ||
"libs/nutlex": "0.2.0", | ||
"libs/type_dispatch": "0.3.0", | ||
"libs/type_dispatch": "0.3.1", | ||
"libs/type_dispatch_macros": "0.3.0", | ||
"libs/uniquify": "0.2.0", | ||
"libs/verilog": "0.0.0", | ||
"pdks/sky130pdk": "0.8.1", | ||
"substrate": "0.8.1", | ||
"tests": "0.0.0", | ||
"tools/magic": "0.0.0", | ||
"tools/netgen": "0.0.0", | ||
"tools/ngspice": "0.3.1", | ||
"tools/pegasus": "0.0.0", | ||
"tools/quantus": "0.0.0", | ||
"tools/spectre": "0.9.1" | ||
"libs/uniquify": "0.2.1", | ||
"libs/verilog": "0.1.0", | ||
"pdks/sky130pdk": "0.8.2", | ||
"substrate": "0.8.2", | ||
"tests": "0.0.1", | ||
"tools/magic": "0.1.0", | ||
"tools/netgen": "0.1.0", | ||
"tools/ngspice": "0.3.2", | ||
"tools/pegasus": "0.1.0", | ||
"tools/quantus": "0.1.0", | ||
"tools/spectre": "0.9.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Changelog | ||
|
||
## 0.1.0 (2025-01-02) | ||
|
||
|
||
### Features | ||
|
||
* **cdl2spice:** add CDL to SPICE conversion command line tool ([#420](https://github.com/ucb-substrate/substrate2/issues/420)) ([1edb23a](https://github.com/ucb-substrate/substrate2/commit/1edb23a7bbd45d96bbb1c11418eb0d0843b7138b)) | ||
* **tests:** reorganize tests and documentation ([#464](https://github.com/ucb-substrate/substrate2/issues/464)) ([928b9b7](https://github.com/ucb-substrate/substrate2/commit/928b9b7c45dc334ca11d86e4564edc58bf6db6f2)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **release:** change cdl2spice version to 0.0.0 ([#421](https://github.com/ucb-substrate/substrate2/issues/421)) ([fc3ee67](https://github.com/ucb-substrate/substrate2/commit/fc3ee67735419239de3687929947df82a4b6b5cb)) | ||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* scir bumped from 0.7.0 to 0.7.1 | ||
* spice bumped from 0.7.1 to 0.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "cdl2spice" | ||
version = "0.0.0" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
anyhow = "1.0.86" | ||
clap = { version = "4.5.6", features = ["derive"] } | ||
scir = { version = "0.7.0", registry = "substrate", path = "../../libs/scir" } | ||
spice = { version = "0.7.1", registry = "substrate", path = "../../libs/spice" } | ||
scir = { version = "0.7.1", registry = "substrate", path = "../../libs/scir" } | ||
spice = { version = "0.7.2", registry = "substrate", path = "../../libs/spice" } | ||
arcstr = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gds" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Changelog | ||
|
||
## [0.1.1](https://github.com/ucb-substrate/substrate2/compare/gdsconv-v0.1.0...gdsconv-v0.1.1) (2025-01-02) | ||
|
||
|
||
### Features | ||
|
||
* **layir:** initial LayIR implementation ([#456](https://github.com/ucb-substrate/substrate2/issues/456)) ([4f76d41](https://github.com/ucb-substrate/substrate2/commit/4f76d41c86fd0c57e525f40c976b5eeb0bbd4c68)) | ||
* **layout:** simplified layout API, LayIR integration ([#459](https://github.com/ucb-substrate/substrate2/issues/459)) ([183d347](https://github.com/ucb-substrate/substrate2/commit/183d347c19e6fe98cf870be4716e7249f23bd423)) | ||
* **tests:** reorganize tests and documentation ([#464](https://github.com/ucb-substrate/substrate2/issues/464)) ([928b9b7](https://github.com/ucb-substrate/substrate2/commit/928b9b7c45dc334ca11d86e4564edc58bf6db6f2)) | ||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* layir bumped from 0.1.0 to 0.1.1 | ||
* gds bumped from 0.3.0 to 0.3.1 | ||
* geometry bumped from 0.5.0 to 0.5.1 |
Oops, something went wrong.