Skip to content

Commit 41c24ed

Browse files
committed
Bump version to 0.12.4
1 parent 4868e34 commit 41c24ed

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 = 0.12.3
2+
current_version = 0.12.4
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+
## [0.12.4] 2019-12-11
99

1010
### Added
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
copyright = 'Block Research Group - ETH Zurich'
2020
author = 'Tom Van Mele'
2121

22-
release = '0.12.3'
22+
release = '0.12.4'
2323
version = '.'.join(release.split('.')[0:2])
2424

2525
master_doc = 'index'

setup.py

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

3030
setup(
3131
name='COMPAS',
32-
version='0.12.3',
32+
version='0.12.4',
3333
description='The COMPAS framework',
3434
long_description=long_description,
3535
long_description_content_type='text/markdown',

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__license__ = 'MIT License'
3535
__email__ = '[email protected]'
3636

37-
__version__ = '0.12.3'
37+
__version__ = '0.12.4'
3838

3939

4040
PY3 = sys.version_info[0] == 3

src/compas_blender/__init__.py

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

1919

20-
__version__ = '0.12.3'
20+
__version__ = '0.12.4'
2121

2222

2323
__all__ = [name for name in dir() if not name.startswith('_')]

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .helpers import * # noqa: F401 F403
1919

2020

21-
__version__ = '0.12.3'
21+
__version__ = '0.12.4'
2222

2323

2424
__all__ = []

src/compas_plotters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from __future__ import print_function
2424

2525

26-
__version__ = '0.12.3'
26+
__version__ = '0.12.4'
2727

2828

2929
from .core import * # noqa: F401 F403

src/compas_rhino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
pass
3434

3535

36-
__version__ = '0.12.3'
36+
__version__ = '0.12.4'
3737

3838

3939
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)