diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 200aadf5a07f..764ff1f8be59 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 5023c1d4a3ca..caa4fc1acfd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ 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 +## [1.6.2] 2021-05-12 ### Added diff --git a/docs/conf.py b/docs/conf.py index e90d44e849ce..5ce94f53968b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ def patched_m2r2_setup(app): copyright = "Block Research Group - ETH Zurich" author = "Tom Van Mele" -release = "1.6.1" +release = "1.6.2" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index b9463c5d826a..724727a0d5a0 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": "1.6.1", + "$compas": "1.6.2", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index ea43bee59d18..32931143a138 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": "1.6.1", + "$compas": "1.6.2", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index d6b56e9fb82f..f31d3f4d89e9 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": "1.6.1", + "$compas": "1.6.2", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index 73c7b3ccb026..8b500cc73c90 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='1.6.1', + version='1.6.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 29f8753b7295..651e15bf8cf3 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -88,7 +88,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '1.6.1' +__version__ = '1.6.2' HERE = os.path.dirname(__file__) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index bc007a452d68..06b57a8c114c 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__ = '1.6.1' +__version__ = '1.6.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 709270a53143..501826a8d714 100644 --- a/src/compas_ghpython/__init__.py +++ b/src/compas_ghpython/__init__.py @@ -22,7 +22,7 @@ from .utilities import * # noqa: F401 F403 -__version__ = '1.6.1' +__version__ = '1.6.2' def get_grasshopper_plugin_path(version): diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 2a6cdee5d1e3..2c7c80e31258 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '1.6.1' +__version__ = '1.6.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 1e516c52b29b..6e0798504ed7 100644 --- a/src/compas_rhino/__init__.py +++ b/src/compas_rhino/__init__.py @@ -29,7 +29,7 @@ from .utilities import * # noqa: F401 F403 -__version__ = '1.6.1' +__version__ = '1.6.2' PURGE_ON_DELETE = True