Skip to content

Commit d0605b2

Browse files
committed
Bump version to 1.15.1
1 parent 8ef596c commit d0605b2

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.15.0
2+
current_version = 1.15.1
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [1.15.1] 2022-03-28
99

1010
### Added
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def patched_m2r2_setup(app):
4040
copyright = "Block Research Group - ETH Zurich"
4141
author = "Tom Van Mele"
4242

43-
release = "1.15.0"
43+
release = "1.15.1"
4444
version = ".".join(release.split(".")[0:2])
4545

4646
master_doc = "index"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read(*names, **kwargs):
2525

2626
setup(
2727
name='COMPAS',
28-
version='1.15.0',
28+
version='1.15.1',
2929
description='The COMPAS framework',
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
__license__ = 'MIT License'
4242
__email__ = '[email protected]'
4343

44-
__version__ = '1.15.0'
44+
__version__ = '1.15.1'
4545

4646
version = LooseVersion(compas.__version__)
4747
versionstring = version.vstring.split('-')[0]

src/compas_blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def redraw():
5151
bpy.ops.wm.redraw_timer(type='DRAW_WIN_SWAP', iterations=1)
5252

5353

54-
__version__ = '1.15.0'
54+
__version__ = '1.15.1'
5555

5656

5757
def _check_blender_version(version):

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import compas
2121
import compas_rhino
2222

23-
__version__ = '1.15.0'
23+
__version__ = '1.15.1'
2424

2525
if compas.is_rhino():
2626
from .utilities import * # noqa: F401 F403

src/compas_plotters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
"""
1616

17-
__version__ = '1.15.0'
17+
__version__ = '1.15.1'
1818

1919
from .core import * # noqa: F401 F403
2020
# from .artists import * # noqa: F401 F403

src/compas_rhino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from .utilities import * # noqa: F401 F403
3030

3131

32-
__version__ = '1.15.0'
32+
__version__ = '1.15.1'
3333

3434

3535
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)