From dd3f49e99b1f10970e704f78ae7f03e58b0c4686 Mon Sep 17 00:00:00 2001 From: tomvanmele Date: Sat, 3 Feb 2024 09:01:05 +0100 Subject: [PATCH] Bump version to 1.0.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- setup.py | 2 +- src/compas_occ/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6f2618364..83df07ffa 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a034a291..a2938a31a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [1.0.1] 2024-02-03 ### Added diff --git a/setup.py b/setup.py index 01d324ce2..104b1bc07 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read(*names, **kwargs): setup( name="compas_occ", - version="1.0.0", + version="1.0.1", description="COMPAS wrapper for the Python bindings of OCC", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_occ/__init__.py b/src/compas_occ/__init__.py index b71ce7695..8cae03a47 100644 --- a/src/compas_occ/__init__.py +++ b/src/compas_occ/__init__.py @@ -4,7 +4,7 @@ __copyright__ = "Block Research Group - ETH Zurich" __license__ = "MIT License" __email__ = "van.mele@arch.ethz.ch" -__version__ = "1.0.0" +__version__ = "1.0.1" HERE = os.path.dirname(__file__)