From 8da3bb9058f74d23b2bd0172412088a3559c6c90 Mon Sep 17 00:00:00 2001 From: Tom Van Mele Date: Thu, 17 Dec 2020 10:33:25 +0100 Subject: [PATCH] Bump version to 0.19.2 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- docs/conf.py | 2 +- schemas/graph.json | 2 +- schemas/halfedge.json | 2 +- schemas/halfface.json | 2 +- setup.py | 2 +- src/compas/__init__.py | 2 +- src/compas_blender/__init__.py | 2 +- src/compas_ghpython/__init__.py | 2 +- src/compas_plotters/__init__.py | 2 +- src/compas_rhino/__init__.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1b53447e5efd..6310e3add848 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.19.1 +current_version = 0.19.2 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e8f4b4a9ef..f003906ca39d 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.19.2] 2020-12-17 ### Added diff --git a/docs/conf.py b/docs/conf.py index af90d138c52a..d155d5683131 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ copyright = "Block Research Group - ETH Zurich" author = "Tom Van Mele" -release = "0.19.1" +release = "0.19.2" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index 3bb87c4b131c..90c68e7d31df 100644 --- a/schemas/graph.json +++ b/schemas/graph.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/compas-dev/compas/schemas/graph.json", - "$compas": "0.19.1", + "$compas": "0.19.2", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index 59fe74b84640..6ea1e9609f70 100644 --- a/schemas/halfedge.json +++ b/schemas/halfedge.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/compas-dev/compas/schemas/halfedge.json", - "$compas": "0.19.1", + "$compas": "0.19.2", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index e0eb8fd19bb5..101a44d6a7f1 100644 --- a/schemas/halfface.json +++ b/schemas/halfface.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/compas-dev/compas/schemas/halfface.json", - "$compas": "0.19.1", + "$compas": "0.19.2", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index c62df059f0b7..613cea3bdbc4 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='0.19.1', + version='0.19.2', description='The COMPAS framework', long_description=long_description, long_description_content_type='text/markdown', diff --git a/src/compas/__init__.py b/src/compas/__init__.py index e16908d6b099..34a1efea8d3f 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -36,7 +36,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '0.19.1' +__version__ = '0.19.2' HERE = os.path.dirname(__file__) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 36815e9323f8..ee67399c3c59 100644 --- a/src/compas_blender/__init__.py +++ b/src/compas_blender/__init__.py @@ -41,7 +41,7 @@ def clear(): bpy.data.collections.remove(block) -__version__ = '0.19.1' +__version__ = '0.19.2' __all__ = [name for name in dir() if not name.startswith('_')] diff --git a/src/compas_ghpython/__init__.py b/src/compas_ghpython/__init__.py index bed45b8ca554..bd1083f8bc10 100644 --- a/src/compas_ghpython/__init__.py +++ b/src/compas_ghpython/__init__.py @@ -18,7 +18,7 @@ from .utilities import * # noqa: F401 F403 -__version__ = '0.19.1' +__version__ = '0.19.2' __all_plugins__ = ['compas_ghpython.install'] diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 1ebe55a02686..6cf161e872e2 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '0.19.1' +__version__ = '0.19.2' from .core import * # noqa: F401 F403 from .artists import * # noqa: F401 F403 diff --git a/src/compas_rhino/__init__.py b/src/compas_rhino/__init__.py index bcfda65e8b62..b00addcf0318 100644 --- a/src/compas_rhino/__init__.py +++ b/src/compas_rhino/__init__.py @@ -29,7 +29,7 @@ from .utilities import * # noqa: F401 F403 -__version__ = '0.19.1' +__version__ = '0.19.2' PURGE_ON_DELETE = True