diff --git a/CHANGELOG.md b/CHANGELOG.md index 2580efa2..bc6f7350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,21 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [0.10.3](https://github.com/gdsfactory/kfactory/releases/v0.10.3) - 2024-01-12 + + +### Added + +- Added x, y, and center properties to `KCell` and `UMKCell` [#237](https://github.com/gdsfactory/kfactory/issues/237) +- Added `KCLayout.clear`, `KCLayout.delete_cell` and other `delete_cell` functions. [#239](https://github.com/gdsfactory/kfactory/issues/239) +- Added get to meta data for KCells (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231) +- Allow `Sequence` (list/tuple) types in KCell metadata (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231) + + +### Changed + +- @kf.cell can handle rebuilding deleted KCells [#239](https://github.com/gdsfactory/kfactory/issues/239) + ## [0.10.2](https://github.com/gdsfactory/kfactory/releases/v0.10.2) - 2023-12-08 diff --git a/README.md b/README.md index dfd47901..fcd915bb 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# KFactory 0.10.2 +# KFactory 0.10.3 Kfactory is a [gdsfactory](https://github.com/gdsfactory/gdsfactory)-like tool. It is built with [KLayout](https://klayout.de) as a backend instead of gdstk, but aims to offer the similar featuers. | :exclamation: KFactory is still experimental, expect API changes without notice (even though we try to keep it to a minimum!) | |---------------------------------------------------------------------------------------------------------------------------------| -It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.10.2` for example. +It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.10.3` for example. Features similar to gdsfactory: diff --git a/changelog.d/+1a6fc38b.added.md b/changelog.d/+1a6fc38b.added.md deleted file mode 100644 index 3874b2ff..00000000 --- a/changelog.d/+1a6fc38b.added.md +++ /dev/null @@ -1 +0,0 @@ -Allow `Sequence` (list/tuple) types in KCell metadata (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231) \ No newline at end of file diff --git a/changelog.d/+e921b99a.added.md b/changelog.d/+e921b99a.added.md deleted file mode 100644 index 5a75d756..00000000 --- a/changelog.d/+e921b99a.added.md +++ /dev/null @@ -1 +0,0 @@ -Added get to meta data for KCells (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231) \ No newline at end of file diff --git a/changelog.d/237.added.md b/changelog.d/237.added.md deleted file mode 100644 index 75cfdf1d..00000000 --- a/changelog.d/237.added.md +++ /dev/null @@ -1 +0,0 @@ -Added x, y, and center properties to `KCell` and `UMKCell` \ No newline at end of file diff --git a/changelog.d/239.added.md b/changelog.d/239.added.md deleted file mode 100644 index 37bcc19e..00000000 --- a/changelog.d/239.added.md +++ /dev/null @@ -1 +0,0 @@ -Added `KCLayout.clear`, `KCLayout.delete_cell` and other `delete_cell` functions. diff --git a/changelog.d/239.changed.md b/changelog.d/239.changed.md deleted file mode 100644 index 123b5550..00000000 --- a/changelog.d/239.changed.md +++ /dev/null @@ -1 +0,0 @@ -@kf.cell can handle rebuilding deleted KCells \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 04ab5b1c..d29d38d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ requires-python = ">=3.10" -version = "0.10.2" +version = "0.10.3" authors = [ {name = "gdsfactory community", email = "contact@gdsfactory.com"}, ] @@ -260,7 +260,7 @@ showcontent = true # github_url = "https://github.com///" [tool.tbump.version] -current = "0.10.2" +current = "0.10.3" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/src/kfactory/__init__.py b/src/kfactory/__init__.py index 6a5ec19e..81c901a9 100644 --- a/src/kfactory/__init__.py +++ b/src/kfactory/__init__.py @@ -33,7 +33,7 @@ from aenum import constant # type: ignore[import-untyped] -__version__ = "0.10.2" +__version__ = "0.10.3" logger = config.logger