Skip to content

Commit

Permalink
Bump to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Jun 14, 2023
1 parent 8ac8a15 commit 63ac048
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 18 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,34 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

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


### Added

- KCells now store (and retrieve) Ports and settings/info in/from GDS [#106](https://github.com/gdsfactory/kfactory/issues/106)
- Added docs section about loguru config [#138](https://github.com/gdsfactory/kfactory/issues/138)
- Added docs section about gdsfactory differences [#140](https://github.com/gdsfactory/kfactory/issues/140)
- Add Netlist extraction based on klayout.db.Netlist [#147](https://github.com/gdsfactory/kfactory/issues/147)
- Added UMKCell to allow addressing some parts in um [#158](https://github.com/gdsfactory/kfactory/issues/158)
- Added snapping of ports to cell decorator [#159](https://github.com/gdsfactory/kfactory/issues/159)


### Changed

- KCell.create_inst doesn't take DCellInstArray args anymore, use KCell.d.create_inst instead [#158](https://github.com/gdsfactory/kfactory/issues/158)
- Updated the Pdk to pydantic 2.0 [PR](https://github.com/gdsfactory/kfactory/pull/157)
- renamed waveguide -> straight [PR](https://github.com/gdsfactory/kfactory/pull/152)


### Fixed

- Fixed incompatibility of Pdk and technology with mypy [#108](https://github.com/gdsfactory/kfactory/issues/108)
- Fixed keep_mirror flag [#143](https://github.com/gdsfactory/kfactory/issues/143)
- Fixed (ix)90° bends second port off-grid [#153](https://github.com/gdsfactory/kfactory/issues/153)
- Fixed circular and euler bends having complex ports in the x*90° cases [#159](https://github.com/gdsfactory/kfactory/issues/159)


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


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

Features similar to gdsfactory:

Expand Down
1 change: 0 additions & 1 deletion changelog.d/+3e25ba81.changed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+8fbce817.changed.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/108.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/147.added.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/158.changed.md

This file was deleted.

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

This file was deleted.

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

[tool.tbump.version]
current = "0.7.5"
current = "0.8.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 @@ -28,7 +28,7 @@

# from .pdk import Pdk

__version__ = "0.7.5"
__version__ = "0.8.0"

logger = config.logger

Expand Down

0 comments on commit 63ac048

Please sign in to comment.