From ce8d43e0950771785386f39d1038494563c6c79a Mon Sep 17 00:00:00 2001 From: Li Date: Thu, 17 Nov 2022 11:48:38 +0100 Subject: [PATCH] Bump version to 0.8.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/compas_ui/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c72b5ca3..0718d332 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 0.8.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 702471d4..3d727483 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.8.0] 2022-11-17 ### Added diff --git a/docs/conf.py b/docs/conf.py index 3c44c75d..30571a64 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ project = "COMPAS UI" copyright = "ETH Zurich - Block Research Group" author = "tom van mele" -release = "0.7.1" +release = "0.8.0" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/setup.py b/setup.py index 7497d1c5..8a0e141b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read(*names, **kwargs): setup( name="compas_ui", - version="0.7.1", + version="0.8.0", description="COMPAS UI provides basic functionality to build a user interface for a COMPAS app.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_ui/__init__.py b/src/compas_ui/__init__.py index 7096b839..7f4bd9e2 100644 --- a/src/compas_ui/__init__.py +++ b/src/compas_ui/__init__.py @@ -28,7 +28,7 @@ __copyright__ = "ETH Zurich - Block Research Group" __license__ = "MIT License" __email__ = "van.mele@arch.ethz.ch" -__version__ = "0.7.1" +__version__ = "0.8.0" HERE = os.path.dirname(__file__)