Skip to content

Commit c4ae4eb

Browse files
committed
Bump version to 0.17.0
1 parent 4e82e62 commit c4ae4eb

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
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.16.9
2+
current_version = 0.17.0
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.17.0] 2020-10-28
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 = "release = '0.16.9'"
22+
release = "release = '0.17.0'"
2323
version = ".".join(release.split(".")[0:2])
2424

2525
master_doc = "index"

schemas/graph.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://github.com/compas-dev/compas/schemas/graph.json",
4-
"$compas": "0.16.9",
4+
"$compas": "0.17.0",
55

66
"type": "object",
77
"poperties": {

schemas/halfedge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://github.com/compas-dev/compas/schemas/halfedge.json",
4-
"$compas": "0.16.9",
4+
"$compas": "0.17.0",
55

66
"type": "object",
77
"poperties": {

schemas/halfface.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/schema",
33
"$id": "https://github.com/compas-dev/compas/schemas/halfface.json",
4-
"$compas": "0.16.9",
4+
"$compas": "0.17.0",
55

66
"type": "object",
77
"poperties": {

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='0.16.9',
28+
version='0.17.0',
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
@@ -35,7 +35,7 @@
3535
__license__ = 'MIT License'
3636
__email__ = '[email protected]'
3737

38-
__version__ = '0.16.9'
38+
__version__ = '0.17.0'
3939

4040

4141
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
@@ -41,7 +41,7 @@ def clear():
4141
bpy.data.collections.remove(block)
4242

4343

44-
__version__ = '0.16.9'
44+
__version__ = '0.17.0'
4545

4646

4747
__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 .utilities import * # noqa: F401 F403
1919

2020

21-
__version__ = '0.16.9'
21+
__version__ = '0.17.0'
2222

2323

2424
__all_plugins__ = ['compas_ghpython.install']

0 commit comments

Comments
 (0)