Skip to content

Commit

Permalink
Bump version: 6.72.5 → 6.72.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Mar 28, 2023
1 parent bb9392e commit cb3c645
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 6.72.5
current_version = 6.72.6
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
@@ -1 +1 @@
FROM joamatab/gdsfactory:6.72.5
FROM joamatab/gdsfactory:6.72.6
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -58,9 +58,9 @@ jobs:
with:
fail_on_unmatched_files: false
files: |
conda/gdsfactory-6.72.5-Linux-x86_64.sh
conda/gdsfactory-6.72.5-Windows-x86_64.exe
conda/gdsfactory-6.72.5-MacOSX-x86_64.pkg
conda/gdsfactory-6.72.6-Linux-x86_64.sh
conda/gdsfactory-6.72.6-Windows-x86_64.exe
conda/gdsfactory-6.72.6-MacOSX-x86_64.pkg
release_docker:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
Expand All @@ -79,5 +79,5 @@ jobs:
uses: docker/build-push-action@v4
with:
push: true
tags: joamatab/gdsfactory:latest,joamatab/gdsfactory:6.72.5
tags: joamatab/gdsfactory:latest,joamatab/gdsfactory:6.72.6
file: .devcontainer/Dockerfile.dev
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# gdsfactory 6.72.5
# gdsfactory 6.72.6

[![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 conda/construct.yaml
@@ -1,5 +1,5 @@
name: gdsfactory
version: 6.72.5
version: 6.72.6
installer_type: all

channels:
Expand Down
2 changes: 1 addition & 1 deletion conda/install.bat
Expand Up @@ -6,7 +6,7 @@ call conda activate

call pip install sax jax sklearn
call pip install "jaxlib[cuda111]" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver
call pip install gdsfactory[full,gmsh,tidy3d,devsim,meow,ray,database]==6.72.5
call pip install gdsfactory[full,gmsh,tidy3d,devsim,meow,ray,database]==6.72.6
call gf install klayout-integration

call conda install -c conda-forge slepc4py=*=complex* -y
Expand Down
2 changes: 1 addition & 1 deletion conda/install.sh
@@ -1,7 +1,7 @@
#!/bin/bash

conda install -c conda-forge slepc4py=*=complex* -y
pip install sklearn gdsfactory[full,gmsh,tidy3d,devsim,meow,sax,ray,database,femwell]==6.72.5
pip install sklearn gdsfactory[full,gmsh,tidy3d,devsim,meow,sax,ray,database,femwell]==6.72.6
gf install klayout-integration

[ ! -d $HOME/Desktop/gdsfactory ] && git clone https://github.com/gdsfactory/gdsfactory.git $HOME/Desktop/gdsfactory
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/08_pdk.py
Expand Up @@ -292,7 +292,7 @@ class Config:
#
# 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==6.72.5` replacing `6.72.5` 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==6.72.6` replacing `6.72.6` 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/__init__.py
Expand Up @@ -145,4 +145,4 @@ def __getattr__(name):
"write_cells",
"PATH",
)
__version__ = "6.72.5"
__version__ = "6.72.6"
2 changes: 1 addition & 1 deletion gdsfactory/cli.py
Expand Up @@ -23,7 +23,7 @@
except ImportError:
import click

VERSION = "6.72.5"
VERSION = "6.72.6"
LAYER_LABEL = LAYER.LABEL


Expand Down
2 changes: 1 addition & 1 deletion gdsfactory/config.py
Expand Up @@ -33,7 +33,7 @@
from rich.console import Console
from rich.table import Table

__version__ = "6.72.5"
__version__ = "6.72.6"
PathType = Union[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>6.72.5</version>
<version>6.72.6</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/klive.lym
Expand Up @@ -146,7 +146,7 @@ class MyServer(pya.QTcpServer):
# Start the server
server = MyServer()
path = pathlib.Path(__file__).parent.absolute()
print("klive 6.72.5 is running from {} inside klayout {} with python {}".format(str(path), klayout_version, sys.version))
print("klive 6.72.6 is running from {} inside klayout {} with python {}".format(str(path), klayout_version, sys.version))

</text>
</klayout-macro>
2 changes: 1 addition & 1 deletion gdsfactory/generic_tech/klayout/pymacros/set_menus.lym
Expand Up @@ -17,7 +17,7 @@
<text>
import pya

__version__ = "6.72.5"
__version__ = "6.72.6"


def set_menu():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -14,7 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
version = "6.72.5"
version = "6.72.6"
authors = [
{name = "gdsfactory community", email = "contact@gdsfactory.com"},
]
Expand Down

0 comments on commit cb3c645

Please sign in to comment.