Skip to content

Commit

Permalink
Bump version: 0.4.0 → 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Feb 24, 2023
1 parent fdc34a2 commit d3302fd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.4.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# KFactory 0.4.0
# KFactory 0.4.1

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.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project = "kfactory"
version = "0.4.0"
version = "0.4.1"
copyright = "2022"
# author = "kfactory"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
version = "0.4.0"
version = "0.4.1"
authors = [
{name = "gdsfactory community", email = "contact@gdsfactory.com"},
]
Expand Down
6 changes: 3 additions & 3 deletions src/kfactory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
from .config import logger


__version__ = "0.4.0"
__version__ = "0.4.1"


def __getattr__(name: str) -> "KLib":
# TODO: Remove with 0.4.0
# TODO: Remove with 0.4.1
if name != "library":
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")
logger.opt(ansi=True).bind(with_backtrace=True).warning(
"<red>DeprecationWarning:</red> library has been renamed to klib since version 0.3.1 and library will be removed with 0.4.0, update your code to use klib instead",
"<red>DeprecationWarning:</red> library has been renamed to klib since version 0.3.1 and library will be removed with 0.4.1, update your code to use klib instead",
)
return klib

Expand Down

0 comments on commit d3302fd

Please sign in to comment.