From 11c962fe074e5eddac8c095c90c870220ae00e46 Mon Sep 17 00:00:00 2001 From: Tom Van Mele Date: Tue, 1 Dec 2020 18:20:00 +0100 Subject: [PATCH] Bump version to 0.18.1 --- .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 a6dbea42dcf..14925e3d356 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.18.0 +current_version = 0.18.1 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 50ca0b38346..2eb6f495473 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.18.1] 2020-12-01 ### Added diff --git a/docs/conf.py b/docs/conf.py index 72ae6a1fd00..a02b6fa7d37 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.18.0" +release = "0.18.1" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index d77e34acfed..fa2ffd6b269 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.18.0", + "$compas": "0.18.1", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index 98aba269748..bbbcb252635 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.18.0", + "$compas": "0.18.1", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index 128d8181d5b..e4358b0e7fb 100644 --- a/schemas/halfface.json +++ b/schemas/halfface.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/schema", "$id": "https://github.com/compas-dev/compas/schemas/halfface.json", - "$compas": "0.18.0", + "$compas": "0.18.1", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index f783facca69..c7ab7713f11 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='0.18.0', + version='0.18.1', 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 ebdd5a45ce2..1953f7bd7c5 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -36,7 +36,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '0.18.0' +__version__ = '0.18.1' PY3 = sys.version_info[0] == 3 diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index f6e0024d9d6..16be541fd30 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.18.0' +__version__ = '0.18.1' __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 81ff3e7f8b2..f000769aa9e 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.18.0' +__version__ = '0.18.1' __all_plugins__ = ['compas_ghpython.install'] diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index be9640d6c10..49a97f034d2 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '0.18.0' +__version__ = '0.18.1' 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 59b2fd30965..d807c2cce82 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.18.0' +__version__ = '0.18.1' PURGE_ON_DELETE = True