Skip to content

Commit

Permalink
Bump to 8.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Feb 4, 2025
1 parent 365a3e6 commit 7a45712
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM joamatab/gdsfactory:8.31.4
FROM joamatab/gdsfactory:8.32.0
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:8.31.4
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:8.32.0
file: .devcontainer/Dockerfile.dev
release_environment:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@

<!-- towncrier release notes start -->

## [8.32.0](https://github.com/gdsfactory/gdsfactory/releases/tag/v8.32.0) - 2025-02-04

No significant changes.


## [8.31.4](https://github.com/gdsfactory/gdsfactory/releases/tag/v8.31.4) - 2025-02-02

- flatten_nitride_transition [#3644](https://github.com/gdsfactory/gdsfactory/pull/3644)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GDSFactory 8.31.4
# GDSFactory 8.32.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 gdsfactory/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if TYPE_CHECKING:
pass

__version__ = "8.31.4"
__version__ = "8.32.0"
__next_major_version__ = "9.0.0"

PathType = str | pathlib.Path
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/grain.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>gdsfactory</name>
<token/>
<hidden>false</hidden>
<version>8.31.4</version>
<version>8.32.0</version>
<api-version/>
<title>Python Library for complex layouts</title>
<doc>GDSFactory Klayout extension.
Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/pymacros/set_menus.lym
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<text>
import pya

__version__ = "8.31.4"
__version__ = "8.32.0"


def set_menu():
Expand Down
2 changes: 1 addition & 1 deletion notebooks/08_pdk.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
"\n",
"gdsfactory is **not** backwards compatible, which means that the package will keep improving and evolving.\n",
"\n",
"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==8.31.4` replacing `8.31.4` by whatever version you end up using.\n",
"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==8.32.0` replacing `8.32.0` by whatever version you end up using.\n",
"2. Before you upgrade gdsfactory to a newer version make sure your tests pass to make sure that things behave as expected\n",
"\n"
]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ license = {file = "LICENSE"}
name = "gdsfactory"
readme = "README.md"
requires-python = ">=3.10,<3.14"
version = "8.31.4"
version = "8.32.0"

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

[tool.tbump.version]
current = "8.31.4"
current = "8.32.0"
regex = '''
(?P<major>\d+)
\.
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7a45712

Please sign in to comment.