Skip to content

Commit

Permalink
Bump to 8.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Jul 31, 2024
1 parent 47b63e5 commit 55c65c0
Show file tree
Hide file tree
Showing 9 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.6.1
FROM joamatab/gdsfactory:8.6.2
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:8.6.1
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:8.6.2
file: .devcontainer/Dockerfile.dev
- name: Build and push minimal
id: docker_build_minimal
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:8.6.1
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:8.6.2
file: .devcontainer/Dockerfile.dev_minimal

release_environment:
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.6.2](https://github.com/gdsfactory/gdsfactory/releases/tag/v8.6.2) - 2024-07-30

No significant changes.


## [8.6.1](https://github.com/gdsfactory/gdsfactory/releases/tag/v8.6.1) - 2024-07-28

- Fix netlist names [#3053](https://github.com/gdsfactory/gdsfactory/pull/3053)
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.6.1
# GDSFactory 8.6.2

[![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 @@ -17,7 +17,7 @@
if TYPE_CHECKING:
pass

__version__ = "8.6.1"
__version__ = "8.6.2"
PathType = str | pathlib.Path

home = pathlib.Path.home()
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.6.1</version>
<version>8.6.2</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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<text>
import pya

__version__ = "8.6.1"
__version__ = "8.6.2"


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 @@ -423,7 +423,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.6.1` replacing `8.6.1` 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.6.2` replacing `8.6.2` 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 @@ -47,7 +47,7 @@ license = {file = "LICENSE"}
name = "gdsfactory"
readme = "README.md"
requires-python = ">=3.10"
version = "8.6.1"
version = "8.6.2"

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

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

0 comments on commit 55c65c0

Please sign in to comment.