Skip to content

Commit

Permalink
Bump version: 1.1.2 → 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
psi committed Feb 1, 2020
1 parent 5c34b5d commit ef0fc63
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GDS factory 1.1.2
# GDS factory 1.1.3

Python package to generate GDS layouts.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from recommonmark.transform import AutoStructify

project = "gdsfactory"
version = "1.1.2"
version = "1.1.3"
copyright = "2019, PsiQ"
author = "PsiQ"

Expand Down
2 changes: 1 addition & 1 deletion pp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"write_gds",
"Port",
]
__version__ = "1.1.2"
__version__ = "1.1.3"


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion pp/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

__version__ = "1.1.2"
__version__ = "1.1.3"
__all__ = ["CONFIG", "load_config", "write_config"]

import os
Expand Down
2 changes: 1 addition & 1 deletion pp/pf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from pp.tests.test_factory import lock_components_with_changes


VERSION = "1.1.2"
VERSION = "1.1.3"
log_directory = CONFIG.get("log_directory")
cwd = pathlib.Path.cwd()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_install_requires():
setup(
name="gdsfactory",
url="https://github.com/PsiQ/gdsfactory",
version="1.1.2",
version="1.1.3",
author="PsiQ",
scripts=["pp/pf.py"],
description="python libraries to generate GDS layouts",
Expand Down

0 comments on commit ef0fc63

Please sign in to comment.