Skip to content

Commit d33266e

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents 6e2f7ec + 2495105 commit d33266e

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.0
2+
current_version = 0.2.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,16 @@ jobs:
2020
release_name: Release ${{ github.ref }}
2121
draft: false
2222
prerelease: false
23+
24+
25+
Publish:
26+
needs: Release
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v2
30+
- uses: actions/setup-python@v2
31+
with:
32+
python-version: '3.x'
33+
- uses: compas-dev/[email protected]
34+
with:
35+
token: ${{ secrets.PYPI }}

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = "COMPAS OCC"
2121
copyright = "Block Research Group - ETH Zurich"
2222
author = "tom van mele"
23-
release = "0.1.0"
23+
release = "0.2.0"
2424
version = ".".join(release.split(".")[0:2])
2525

2626
master_doc = "index"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read(*names, **kwargs):
2525

2626
setup(
2727
name="compas_occ",
28-
version="0.1.0",
28+
version="0.2.0",
2929
description="COMPAS wrapper for the Python bindings of OCC",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",

src/compas_occ/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
__copyright__ = "Block Research Group - ETH Zurich"
2525
__license__ = "MIT License"
2626
__email__ = "[email protected]"
27-
__version__ = "0.1.0"
27+
__version__ = "0.2.0"
2828

2929

3030
HERE = os.path.dirname(__file__)

0 commit comments

Comments
 (0)