Skip to content

Commit

Permalink
Bump to 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Jan 12, 2024
1 parent 8a59a23 commit 1913660
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [0.10.3](https://github.com/gdsfactory/kfactory/releases/v0.10.3) - 2024-01-12


### Added

- Added x, y, and center properties to `KCell` and `UMKCell` [#237](https://github.com/gdsfactory/kfactory/issues/237)
- Added `KCLayout.clear`, `KCLayout.delete_cell` and other `delete_cell` functions. [#239](https://github.com/gdsfactory/kfactory/issues/239)
- Added get to meta data for KCells (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231)
- Allow `Sequence` (list/tuple) types in KCell metadata (info/settings) [#PR](https://github.com/gdsfactory/kfactory/pull/231)


### Changed

- @kf.cell can handle rebuilding deleted KCells [#239](https://github.com/gdsfactory/kfactory/issues/239)

## [0.10.2](https://github.com/gdsfactory/kfactory/releases/v0.10.2) - 2023-12-08


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.10.2
# KFactory 0.10.3

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

Features similar to gdsfactory:

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

[tool.tbump.version]
current = "0.10.2"
current = "0.10.3"

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

from aenum import constant # type: ignore[import-untyped]

__version__ = "0.10.2"
__version__ = "0.10.3"

logger = config.logger

Expand Down

0 comments on commit 1913660

Please sign in to comment.