Skip to content

Commit

Permalink
Bump to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Sep 25, 2023
1 parent f21991d commit 457ca15
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.9.0](https://github.com/gdsfactory/kfactory/tree/0.9.0) - 2023-09-25


### Added

- Added to be set by decorator [#180](https://github.com/gdsfactory/kfactory/issues/180)
- Added __contains__ to port and __eq__ [#182](https://github.com/gdsfactory/kfactory/issues/182)
- Add PDK capabilities to KCLayout [#171](https://github.com/gdsfactory/kfactory/pull/171)
- Added KCell.connectivity_chek to check for port alignments and overlaps
- Added a cli based on [typer](https://typer.tiangolo.com) to allow running of functions (taking int/float/str args) and allow upload/update of gdatasea edafiles


### Fixed

- Fixed throw a critical log message on negative width and angles and convert them to positive ones [#183](https://github.com/gdsfactory/kfactory/issues/183)


## [0.8.4](https://github.com/gdsfactory/kfactory/tree/0.8.4) - 2023-06-28


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.8.4
# KFactory 0.9.0

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.8.4` for example.
It is suggest to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==0.9.0` for example.

Features similar to gdsfactory:

Expand Down
1 change: 0 additions & 1 deletion changelog.d/+ab59f6ef.added.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/183.fixed.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.8.4"
version = "0.9.0"
authors = [
{name = "gdsfactory community", email = "contact@gdsfactory.com"},
]
Expand Down Expand Up @@ -247,7 +247,7 @@ showcontent = true
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "0.8.4"
current = "0.9.0"

# 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 @@ -30,7 +30,7 @@

from aenum import constant # type: ignore[import]

__version__ = "0.8.4"
__version__ = "0.9.0"

logger = config.logger

Expand Down

0 comments on commit 457ca15

Please sign in to comment.