From 17f5baee29d605655036ad31f265c709c148d64a Mon Sep 17 00:00:00 2001 From: Sebastian Goeldi Date: Wed, 4 Oct 2023 23:42:24 +0200 Subject: [PATCH] Bump to 0.9.1 --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- changelog.d/+963ab5a0.added.md | 1 - pyproject.toml | 4 ++-- src/kfactory/__init__.py | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) delete mode 100644 changelog.d/+963ab5a0.added.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8525bc6d..1507931e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [0.9.1](https://github.com/gdsfactory/kfactory/releases/v0.9.1) - 2023-10-04 + + +### Added + +- Added back kf.kcell.get_cells in order to automatically scrape a module for KCell factories [PR](https://github.com/gdsfactory/kfactory/pull/187) + + ## [0.9.0](https://github.com/gdsfactory/kfactory/releases/v0.9.0) - 2023-09-25 diff --git a/README.md b/README.md index af024453..c1c29bbe 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# KFactory 0.9.0 +# KFactory 0.9.1 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.9.0` for example. +It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.9.1` for example. Features similar to gdsfactory: diff --git a/changelog.d/+963ab5a0.added.md b/changelog.d/+963ab5a0.added.md deleted file mode 100644 index 6e7f4fe5..00000000 --- a/changelog.d/+963ab5a0.added.md +++ /dev/null @@ -1 +0,0 @@ -Added back kf.kcell.get_cells in order to automatically scrape a module for KCell factories [PR](https://github.com/gdsfactory/kfactory/pull/187) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 6d310a89..7f4b043b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ requires-python = ">=3.10" -version = "0.9.0" +version = "0.9.1" authors = [ {name = "gdsfactory community", email = "contact@gdsfactory.com"}, ] @@ -247,7 +247,7 @@ showcontent = true # github_url = "https://github.com///" [tool.tbump.version] -current = "0.9.0" +current = "0.9.1" # 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 461561c2..4c546751 100644 --- a/src/kfactory/__init__.py +++ b/src/kfactory/__init__.py @@ -30,7 +30,7 @@ from aenum import constant # type: ignore[import] -__version__ = "0.9.0" +__version__ = "0.9.1" logger = config.logger