From fcefb66085962ca7373b8800339a3d9d9bb91b52 Mon Sep 17 00:00:00 2001 From: brgcode Date: Fri, 26 Mar 2021 17:11:12 +0100 Subject: [PATCH] Bump version to 1.3.0 --- .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 620c961df39..88f9ab91d98 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.1 +current_version = 1.3.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 649c6ce1316..3cd7dd288d9 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.3.0] 2021-03-26 ### Added diff --git a/docs/conf.py b/docs/conf.py index b044e81b287..7506a9e9f30 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.2.1" +release = "1.3.0" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index 966977f9e06..809b2942690 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.2.1", + "$compas": "1.3.0", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index a29f352c7bb..2bd3c1a1b33 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.2.1", + "$compas": "1.3.0", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index 93998c7236c..44e35b71197 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.2.1", + "$compas": "1.3.0", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index 6db398e115e..db01022e6e0 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='1.2.1', + version='1.3.0', 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 181a06774d6..2cbfc9f28a8 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -36,7 +36,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '1.2.1' +__version__ = '1.3.0' HERE = os.path.dirname(__file__) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 0a127da40d8..c9335f7e646 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.2.1' +__version__ = '1.3.0' __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 3f8b6ef7b9f..317e66464ed 100644 --- a/src/compas_ghpython/__init__.py +++ b/src/compas_ghpython/__init__.py @@ -19,7 +19,7 @@ from .utilities import * # noqa: F401 F403 -__version__ = '1.2.1' +__version__ = '1.3.0' def get_grasshopper_library_path(version): diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 97603f06724..12cf4324899 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '1.2.1' +__version__ = '1.3.0' 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 89a4e8030a2..cac3a8648b3 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.2.1' +__version__ = '1.3.0' PURGE_ON_DELETE = True