From 5bb60b6ae57dab06fe14081dcbde32b87de9e9e5 Mon Sep 17 00:00:00 2001 From: tomvanmele Date: Tue, 5 Dec 2023 22:18:07 +0100 Subject: [PATCH] Bump version to 0.3.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- setup.py | 2 +- src/compas_libigl/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0a11f46..c2464c8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 71dfe3b..9c28e7c 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 +## [0.3.1] 2023-12-05 ### Added diff --git a/setup.py b/setup.py index e3a2712..c3703af 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def build_extension(self, ext): setup( name="compas_libigl", - version="0.3.0", + version="0.3.1", description="Opinionated COMPAS compatible bindings for top-level algorithms of libigl.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_libigl/__init__.py b/src/compas_libigl/__init__.py index 3e6b507..1aa5020 100644 --- a/src/compas_libigl/__init__.py +++ b/src/compas_libigl/__init__.py @@ -16,7 +16,7 @@ __copyright__ = "Block Research Group - ETH Zurich" __license__ = "Mozilla Public License Version 2.0" __email__ = "van.mele@arch.ethz.ch" -__version__ = "0.3.0" +__version__ = "0.3.1" HERE = os.path.dirname(__file__)