Skip to content

Commit

Permalink
Bump to 7.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Dec 2, 2023
1 parent 44429eb commit 6d8442e
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
@@ -1 +1 @@
FROM joamatab/gdsfactory:7.8.18
FROM joamatab/gdsfactory:7.9.0
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,11 @@

<!-- towncrier release notes start -->

## [7.9.0](https://github.com/gdsfactory/gdsfactory/releases/tag/v7.9.0) - 2023-12-02

No significant changes.


## [7.8.18](https://github.com/gdsfactory/gdsfactory/releases/tag/v7.8.18) - 2023-11-19

- add wire corner kwargs [#2320](https://github.com/gdsfactory/gdsfactory/pull/2320)
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# gdsfactory 7.8.18
# gdsfactory 7.9.0

[![docs](https://github.com/gdsfactory/gdsfactory/actions/workflows/pages.yml/badge.svg)](https://gdsfactory.github.io/gdsfactory/)
[![PyPI](https://img.shields.io/pypi/v/gdsfactory)](https://pypi.org/project/gdsfactory/)
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/08_pdk.py
Expand Up @@ -284,7 +284,7 @@ class LayerMapDemo(LayerMap):
#
# gdsfactory is **not** backwards compatible, which means that the package will keep improving and evolving.
#
# 1. To make your work stable you should install a specific version and [pin the version](https://martin-thoma.com/python-requirements/) in your `requirements.txt` or `pyproject.toml` as `gdsfactory==7.8.18` replacing `7.8.18` by whatever version you end up using.
# 1. To make your work stable you should install a specific version and [pin the version](https://martin-thoma.com/python-requirements/) in your `requirements.txt` or `pyproject.toml` as `gdsfactory==7.9.0` replacing `7.9.0` by whatever version you end up using.
# 2. Before you upgrade gdsfactory to a newer version make sure your tests pass to make sure that things behave as expected
#
#
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/config.py
Expand Up @@ -27,7 +27,7 @@
from rich.console import Console
from rich.table import Table

__version__ = "7.8.18"
__version__ = "7.9.0"
PathType = str | pathlib.Path

home = pathlib.Path.home()
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/grain.xml
Expand Up @@ -3,7 +3,7 @@
<name>gdsfactory</name>
<token/>
<hidden>false</hidden>
<version>7.8.18</version>
<version>7.9.0</version>
<api-version/>
<title>gdsfactory</title>
<doc>EDA tool to layout integrated circuits</doc>
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/pymacros/set_menus.lym
Expand Up @@ -17,7 +17,7 @@
<text>
import pya

__version__ = "7.8.18"
__version__ = "7.9.0"


def set_menu():
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -41,7 +41,7 @@ license = {file = "LICENSE"}
name = "gdsfactory"
readme = "README.md"
requires-python = ">=3.10"
version = "7.8.18"
version = "7.9.0"

[project.optional-dependencies]
cad = [
Expand Down Expand Up @@ -207,7 +207,7 @@ message_template = "Bump to {new_version}"
tag_template = "v{new_version}"

[tool.tbump.version]
current = "7.8.18"
current = "7.9.0"
regex = '''
(?P<major>\d+)
\.
Expand Down

0 comments on commit 6d8442e

Please sign in to comment.