diff --git a/CHANGELOG.md b/CHANGELOG.md index b511e03a..2580efa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [0.10.2](https://github.com/gdsfactory/kfactory/releases/v0.10.2) - 2023-12-08 + + +### Fixed + +- Fix no_warn being ignored in transform + ## [0.10.1](https://github.com/gdsfactory/kfactory/releases/v0.10.1) - 2023-12-05 No significant changes. diff --git a/README.md b/README.md index 6a165a97..dfd47901 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# KFactory 0.10.1 +# KFactory 0.10.2 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.1` for example. +It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.10.2` for example. Features similar to gdsfactory: diff --git a/changelog.d/+4cc3b871.fixed.md b/changelog.d/+4cc3b871.fixed.md deleted file mode 100644 index c1978f3b..00000000 --- a/changelog.d/+4cc3b871.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fix no_warn being ignored in transform \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 976da857..84a73e84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ requires-python = ">=3.10" -version = "0.10.1" +version = "0.10.2" authors = [ {name = "gdsfactory community", email = "contact@gdsfactory.com"}, ] @@ -259,7 +259,7 @@ showcontent = true # github_url = "https://github.com///" [tool.tbump.version] -current = "0.10.1" +current = "0.10.2" # 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 33429009..41535bb7 100644 --- a/src/kfactory/__init__.py +++ b/src/kfactory/__init__.py @@ -32,7 +32,7 @@ from aenum import constant # type: ignore[import-untyped] -__version__ = "0.10.1" +__version__ = "0.10.2" logger = config.logger