Skip to content

Commit

Permalink
Bump to 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Dec 8, 2023
1 parent a6e758c commit ca710b9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

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


### Fixed

- Fix no_warn being ignored in transform

## [0.10.1](https://github.com/gdsfactory/kfactory/releases/v0.10.1) - 2023-12-05

No significant changes.
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.1
# KFactory 0.10.2

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

Features similar to gdsfactory:

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

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

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

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

__version__ = "0.10.1"
__version__ = "0.10.2"

logger = config.logger

Expand Down

0 comments on commit ca710b9

Please sign in to comment.