From 063f892679e402f2140eb815d397b6bee626c285 Mon Sep 17 00:00:00 2001 From: Sebastian Goeldi Date: Thu, 1 Jun 2023 18:20:19 +0200 Subject: [PATCH] Bump to 0.7.5 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 4 ++-- changelog.d/+changelog_fix.fixed.md | 1 - changelog.d/136.fixed.md | 1 - changelog.d/138.added.md | 1 - changelog.d/140.added.md | 1 - changelog.d/143.fixed.md | 1 - changelog.d/92.added.md | 1 - pyproject.toml | 4 ++-- src/kfactory/__init__.py | 2 +- 10 files changed, 22 insertions(+), 11 deletions(-) delete mode 100644 changelog.d/+changelog_fix.fixed.md delete mode 100644 changelog.d/136.fixed.md delete mode 100644 changelog.d/138.added.md delete mode 100644 changelog.d/140.added.md delete mode 100644 changelog.d/143.fixed.md delete mode 100644 changelog.d/92.added.md diff --git a/CHANGELOG.md b/CHANGELOG.md index e541f02a..a85528ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [0.7.5](https://github.com/gdsfactory/kfactory/tree/0.7.5) - 2023-06-01 + + +### Added + +- Added `mirror_x/mirror_y` to Instance, `xmin/xmax/ymin/ymax` getter & setter to Instance, `xmin/xmax/ymin/ymax` getter to KCell, `polygon_from_array`, `dpolygon_from_arry` [#92](https://github.com/gdsfactory/kfactory/issues/92) +- Document settings/config better [#138](https://github.com/gdsfactory/kfactory/issues/138) +- Added docs for people familiar with gdsfactory [#140](https://github.com/gdsfactory/kfactory/issues/140) + + +### Fixed + +- Fixed missing changelog in docs [#136](https://github.com/gdsfactory/kfactory/issues/136) +- Fixed add_port ignore keep_mirror flag [#143](https://github.com/gdsfactory/kfactory/issues/143) +- Fixed changelog and changelog.d links + + ## [0.7.4](https://github.com/gdsfactory/kfactory/tree/0.7.4) - 2023-05-29 diff --git a/README.md b/README.md index 7b76a980..d8323126 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# KFactory 0.7.4 +# KFactory 0.7.5 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.7.4` for example. +It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.7.5` for example. Features similar to gdsfactory: diff --git a/changelog.d/+changelog_fix.fixed.md b/changelog.d/+changelog_fix.fixed.md deleted file mode 100644 index 48069fd8..00000000 --- a/changelog.d/+changelog_fix.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixed changelog and changelog.d links \ No newline at end of file diff --git a/changelog.d/136.fixed.md b/changelog.d/136.fixed.md deleted file mode 100644 index 1cf812ec..00000000 --- a/changelog.d/136.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixed missing changelog in docs \ No newline at end of file diff --git a/changelog.d/138.added.md b/changelog.d/138.added.md deleted file mode 100644 index a6def202..00000000 --- a/changelog.d/138.added.md +++ /dev/null @@ -1 +0,0 @@ -Document settings/config better \ No newline at end of file diff --git a/changelog.d/140.added.md b/changelog.d/140.added.md deleted file mode 100644 index 85ebb4b6..00000000 --- a/changelog.d/140.added.md +++ /dev/null @@ -1 +0,0 @@ -Added docs for people familiar with gdsfactory \ No newline at end of file diff --git a/changelog.d/143.fixed.md b/changelog.d/143.fixed.md deleted file mode 100644 index 04399d58..00000000 --- a/changelog.d/143.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixed add_port ignore keep_mirror flag \ No newline at end of file diff --git a/changelog.d/92.added.md b/changelog.d/92.added.md deleted file mode 100644 index e641248b..00000000 --- a/changelog.d/92.added.md +++ /dev/null @@ -1 +0,0 @@ -Added `mirror_x/mirror_y` to Instance, `xmin/xmax/ymin/ymax` getter & setter to Instance, `xmin/xmax/ymin/ymax` getter to KCell, `polygon_from_array`, `dpolygon_from_arry` diff --git a/pyproject.toml b/pyproject.toml index 225b83ad..a40595f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ requires-python = ">=3.10" -version = "0.7.4" +version = "0.7.5" authors = [ {name = "gdsfactory community", email = "contact@gdsfactory.com"}, ] @@ -237,7 +237,7 @@ showcontent = true # github_url = "https://github.com///" [tool.tbump.version] -current = "0.7.4" +current = "0.7.5" # 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 0b3f135b..f5af7424 100644 --- a/src/kfactory/__init__.py +++ b/src/kfactory/__init__.py @@ -27,7 +27,7 @@ from .conf import config from .pdk import Pdk -__version__ = "0.7.4" +__version__ = "0.7.5" logger = config.logger