Skip to content

Commit 759d1b5

Browse files
committed
Bump version to 0.3.0
1 parent c1f34b8 commit 759d1b5

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.7
2+
current_version = 0.3.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True
@@ -23,3 +23,4 @@ replace = __version__ = '{new_version}'
2323
[bumpversion:file:src/compas_rhino/__init__.py]
2424
search = __version__ = '{current_version}'
2525
replace = __version__ = '{new_version}'
26+

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project = 'COMPAS'
1616
copyright = '2017, Block Research Group - ETH Zurich'
1717
author = 'Tom Van Mele'
18-
release = '0.2.7'
18+
release = '0.3.0'
1919
version = '.'.join(release.split('.')[0:2])
2020

2121
master_doc = 'index'

setup.py

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

3636
setup(
3737
name='COMPAS',
38-
version='0.2.7',
38+
version='0.3.0',
3939
description='The COMPAS framework',
4040
long_description=long_description,
4141
long_description_content_type='text/markdown',

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
__copyright__ = 'Copyright 2017 - Block Research Group, ETH Zurich'
3434
__license__ = 'MIT License'
3535
__email__ = '[email protected]'
36-
__version__ = '0.2.7'
36+
__version__ = '0.3.0'
3737

3838

3939
PY3 = sys.version_info.major == 3

src/compas/files/obj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = ['Tom Van Mele <[email protected]>', ]
1414
__copyright__ = 'Copyright 2014, Block Research Group - ETH Zurich'
1515
__license__ = 'MIT License'
16-
__version__ = '0.2.7'
16+
__version__ = '0.3.0'
1717
__date__ = 'Mar 31, 2015'
1818

1919

src/compas_rhino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from . import utilities
2828

2929

30-
__version__ = '0.2.7'
30+
__version__ = '0.3.0'
3131

3232

3333
__all__ = utilities.__all__ + ['__version__']

0 commit comments

Comments
 (0)