From 97fa903e2bcb061a17b12989fd3ad1d482b1c19c Mon Sep 17 00:00:00 2001 From: Tom Van Mele Date: Wed, 28 Oct 2020 07:46:54 +0100 Subject: [PATCH] Bump version to 0.17.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 ad0e9c2cffb..41aa6c11842 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.0 +current_version = 0.17.1 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index de2e6dfa1e8..575738688b1 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). -## [0.17.0] 2020-10-28 +## [[0.17.1] 2020-10-28] 2020-10-28 ### Added diff --git a/docs/conf.py b/docs/conf.py index ec307429374..efecd07c77e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ copyright = "Block Research Group - ETH Zurich" author = "Tom Van Mele" -release = "release = '0.17.0'" +release = "release = '0.17.1'" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index 0a1cf9cd5bd..9e3f3cbe676 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.0", + "$compas": "0.17.1", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index ae060a1c329..e0042565571 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.0", + "$compas": "0.17.1", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index 2211370ef0c..995fe21dadb 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.0", + "$compas": "0.17.1", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index 7e7686c3f8d..8db55daa5ef 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='0.17.0', + version='0.17.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 eb5c9aacc44..2976f950ecd 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.0' +__version__ = '0.17.1' PY3 = sys.version_info[0] == 3 diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 02b6c0ac146..55c69cac838 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.0' +__version__ = '0.17.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 85262b4a527..8823164c854 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.0' +__version__ = '0.17.1' __all_plugins__ = ['compas_ghpython.install'] diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 7f75e741176..3d4964dd833 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '0.17.0' +__version__ = '0.17.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 21d970f74fc..67a38bc95db 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.0' +__version__ = '0.17.1' PURGE_ON_DELETE = True