From 92902e173a83c1a32476275949314452188a2525 Mon Sep 17 00:00:00 2001 From: brgcode Date: Wed, 12 May 2021 16:09:42 +0200 Subject: [PATCH] Bump version to 1.6.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 200aadf5a07..764ff1f8be5 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 5023c1d4a3c..caa4fc1acfd 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 e90d44e849c..5ce94f53968 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 b9463c5d826..724727a0d5a 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 ea43bee59d1..32931143a13 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 d6b56e9fb82..f31d3f4d89e 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 73c7b3ccb02..8b500cc73c9 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 29f8753b729..651e15bf8cf 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 bc007a452d6..06b57a8c114 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 709270a5314..501826a8d71 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 2a6cdee5d1e..2c7c80e3125 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 1e516c52b29..6e0798504ed 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