From 0e03f84507c8dc1fa81d5bb4239941334a8cf58c Mon Sep 17 00:00:00 2001 From: tomvanmele Date: Tue, 5 Dec 2023 20:25:16 +0100 Subject: [PATCH] Bump version to 0.3.0 --- .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 8301786..0a11f46 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.5 +current_version = 0.3.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index c010504..f5b369d 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.0] 2023-12-05 ### Added diff --git a/setup.py b/setup.py index cb8b0ef..e3a2712 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def build_extension(self, ext): setup( name="compas_libigl", - version="0.2.5", + version="0.3.0", 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 b18af29..3e6b507 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.2.5" +__version__ = "0.3.0" HERE = os.path.dirname(__file__)