Skip to content

Commit

Permalink
chore: release docsv2
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku committed Jan 3, 2025
1 parent 7763e29 commit b8774c5
Show file tree
Hide file tree
Showing 62 changed files with 698 additions and 166 deletions.
59 changes: 31 additions & 28 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
{
"bins/cdl2spice": "0.0.0",
"codegen": "0.8.1",
"config": "0.2.5",
"docs/snippets": "0.5.1",
"bins/cdl2spice": "0.1.0",
"codegen": "0.8.2",
"config": "0.2.6",
"docs/snippets": "0.5.2",
"libs/atoll": "0.1.3",
"libs/cache": "0.5.0",
"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/geometry_macros": "0.0.1",
"libs/enumify": "0.1.1",
"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.2",
"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/nutlex": "0.2.0",
"libs/type_dispatch": "0.3.0",
"libs/type_dispatch_macros": "0.3.0",
"libs/uniquify": "0.2.0",
"libs/verilog": "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.1",
"libs/type_dispatch": "0.3.1",
"libs/type_dispatch_macros": "0.3.1",
"libs/uniquify": "0.2.1",
"libs/verilog": "0.1.0",
"pdks/sky130pdk": "0.8.1",
"substrate": "0.8.1",
"substrate": "0.8.2",
"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"
"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",
"examples2/colbuf": "0.0.1",
"tools/magic-netgen": "0.0.1",
"examples/latest/substrate_api_examples": "0.1.1"
}
62 changes: 31 additions & 31 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 bins/cdl2spice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## 0.1.0 (2025-01-03)


### 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
6 changes: 3 additions & 3 deletions bins/cdl2spice/Cargo.toml
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"
Loading

0 comments on commit b8774c5

Please sign in to comment.