Skip to content

Commit

Permalink
Bump to 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Jun 1, 2023
1 parent 9e1b748 commit 063f892
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [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


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
1 change: 0 additions & 1 deletion changelog.d/+changelog_fix.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/136.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/138.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/140.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/143.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/92.added.md

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
]
Expand Down Expand Up @@ -237,7 +237,7 @@ showcontent = true
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "0.7.4"
current = "0.7.5"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion src/kfactory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .conf import config
from .pdk import Pdk

__version__ = "0.7.4"
__version__ = "0.7.5"

logger = config.logger

Expand Down

0 comments on commit 063f892

Please sign in to comment.