From e3cd70f167ca5c3ef3da85d565cd2674d8831ec8 Mon Sep 17 00:00:00 2001 From: brgcode Date: Tue, 20 Apr 2021 11:05:44 +0200 Subject: [PATCH] Bump version to 1.5.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 dc24ef52d1a..f03a9df6c7d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.5.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 939bb5ed2fd..665118d8eac 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.5.0] 2021-04-20 ### Added diff --git a/docs/conf.py b/docs/conf.py index e1e2c9df2bf..d4490a4595b 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.4.0" +release = "1.5.0" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/schemas/graph.json b/schemas/graph.json index df0d57130e5..8a099a12880 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.4.0", + "$compas": "1.5.0", "type": "object", "poperties": { diff --git a/schemas/halfedge.json b/schemas/halfedge.json index bbed9a20eee..53da614a55d 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.4.0", + "$compas": "1.5.0", "type": "object", "poperties": { diff --git a/schemas/halfface.json b/schemas/halfface.json index 09f2ac32ca2..aa40529f423 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.4.0", + "$compas": "1.5.0", "type": "object", "poperties": { diff --git a/setup.py b/setup.py index 2781cafbceb..3ffcd8ea6fa 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='COMPAS', - version='1.4.0', + version='1.5.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 dbd616d2ac3..e6e8169aaec 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -82,7 +82,7 @@ __license__ = 'MIT License' __email__ = 'vanmelet@ethz.ch' -__version__ = '1.4.0' +__version__ = '1.5.0' HERE = os.path.dirname(__file__) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 1dcee8c6f30..855ba6177d1 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.4.0' +__version__ = '1.5.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 e86cc61581c..9c4ed3ce5cb 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.4.0' +__version__ = '1.5.0' def get_grasshopper_library_path(version): diff --git a/src/compas_plotters/__init__.py b/src/compas_plotters/__init__.py index 5be6e7c8957..06f8d0b1ccc 100644 --- a/src/compas_plotters/__init__.py +++ b/src/compas_plotters/__init__.py @@ -19,7 +19,7 @@ """ -__version__ = '1.4.0' +__version__ = '1.5.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 1132942f250..a0918e941e8 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.4.0' +__version__ = '1.5.0' PURGE_ON_DELETE = True