Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 28, 2019
1 parent 245d30d commit d286d49
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.10.0
message = Bump version to {new_version}
commit = True
tag = True
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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
## [0.10.0] 2019-10-28

### Added

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -19,7 +19,7 @@
copyright = 'Block Research Group - ETH Zurich'
author = 'Tom Van Mele'

release = '0.9.1'
release = '0.10.0'
version = '.'.join(release.split('.')[0:2])

master_doc = 'index'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -28,7 +28,7 @@ def read(*names, **kwargs):

setup(
name='COMPAS',
version='0.9.1',
version='0.10.0',
description='The COMPAS framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion src/compas/__init__.py
Expand Up @@ -35,7 +35,7 @@
__license__ = 'MIT License'
__email__ = 'vanmelet@ethz.ch'

__version__ = '0.9.1'
__version__ = '0.10.0'


PY3 = sys.version_info[0] == 3
Expand Down
2 changes: 1 addition & 1 deletion src/compas_blender/__init__.py
Expand Up @@ -21,7 +21,7 @@
from .utilities import *


__version__ = '0.9.1'
__version__ = '0.10.0'


__all__ = [name for name in dir() if not name.startswith('_')]
2 changes: 1 addition & 1 deletion src/compas_ghpython/__init__.py
Expand Up @@ -18,7 +18,7 @@
from .helpers import *


__version__ = '0.9.1'
__version__ = '0.10.0'


__all__ = []
2 changes: 1 addition & 1 deletion src/compas_rhino/__init__.py
Expand Up @@ -28,7 +28,7 @@
from .utilities import *


__version__ = '0.9.1'
__version__ = '0.10.0'


PURGE_ON_DELETE = True
Expand Down

0 comments on commit d286d49

Please sign in to comment.