Skip to content

Commit

Permalink
Bump to 7.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Feb 9, 2024
1 parent 41f371b commit 86e58a3
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
@@ -1 +1 @@
FROM joamatab/gdsfactory:7.10.7
FROM joamatab/gdsfactory:7.10.8
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile.dev
Expand Up @@ -28,7 +28,7 @@ USER jovyan

# Using pip to install Python packages
# Ensure your base image has all the necessary libraries or install them before switching users
RUN pip install gdsfactory[full]==7.10.7
RUN pip install gdsfactory[full]==7.10.8

# Set the working directory
WORKDIR /home/jovyan
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile.dev_minimal
@@ -1,4 +1,4 @@
FROM python:3.11-slim

RUN apt update
RUN pip install gdsfactory==7.10.7
RUN pip install gdsfactory==7.10.8
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -46,14 +46,14 @@ jobs:
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:7.10.7
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory:7.10.8
file: .devcontainer/Dockerfile.dev
- name: Build and push minimal
id: docker_build_minimal
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:7.10.7
tags: ${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:latest,${{ secrets.DOCKERHUB_USERNAME }}/gdsfactory_minimal:7.10.8
file: .devcontainer/Dockerfile.dev_minimal

release_environment:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,11 @@

<!-- towncrier release notes start -->

## [7.10.8](https://github.com/gdsfactory/gdsfactory/releases/tag/v7.10.8) - 2024-02-08

No significant changes.


## [7.10.7](https://github.com/gdsfactory/gdsfactory/releases/tag/v7.10.7) - 2024-02-06

- Update kfactory latest [#2512](https://github.com/gdsfactory/gdsfactory/pull/2512)
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# gdsfactory 7.10.7
# gdsfactory 7.10.8

[![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
Expand Up @@ -32,7 +32,7 @@
if TYPE_CHECKING:
from loguru import Logger

__version__ = "7.10.7"
__version__ = "7.10.8"
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.10.7</version>
<version>7.10.8</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.10.7"
__version__ = "7.10.8"


def set_menu():
Expand Down
2 changes: 1 addition & 1 deletion notebooks/08_pdk.ipynb
Expand Up @@ -448,7 +448,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==7.10.7` replacing `7.10.7` 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==7.10.8` replacing `7.10.8` 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
Expand Up @@ -54,7 +54,7 @@ license = {file = "LICENSE"}
name = "gdsfactory"
readme = "README.md"
requires-python = ">=3.10"
version = "7.10.7"
version = "7.10.8"

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

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

0 comments on commit 86e58a3

Please sign in to comment.