diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 04b8f8586c0..7513a4b8840 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.2 +current_version = 0.17.3 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 0862b53f2e8..ba9360fcbe3 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.17.3] 2020-11-20 ### Added diff --git a/docs/conf.py b/docs/conf.py index 25a2c0e58b9..b7a9f90479f 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.17.2" +release = "0.17.3" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index 4fb4b12cddc..5ad68ececeb 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.17.2", + "$compas": "0.17.3", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index 7e38856ece4..3c0c8ee2dc0 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.17.2", + "$compas": "0.17.3", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index ea0ed8adc82..c9da547331c 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.17.2", + "$compas": "0.17.3", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index 505224f1ff9..c675a232fc2 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='0.17.2', + version='0.17.3', 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 7eb77f9e1a4..0edbe6f4114 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -35,7 +35,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '0.17.2' +__version__ = '0.17.3' PY3 = sys.version_info[0] == 3 diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index f18cf4d9393..9c56d894940 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.17.2' +__version__ = '0.17.3' __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 f7bd1b6f7dd..70d8be9b5af 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.17.2' +__version__ = '0.17.3' __all_plugins__ = ['compas_ghpython.install'] diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 15f17ad097e..6de14dbf8d7 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '0.17.2' +__version__ = '0.17.3' 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 8f9a1588e10..94171aa95f4 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.17.2' +__version__ = '0.17.3' PURGE_ON_DELETE = True