Skip to content

Commit 11c962f

Browse files
committed
Bump version to 0.18.1
1 parent 8c3ed4f commit 11c962f

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.18.0
2+
current_version = 0.18.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+
## [0.18.1] 2020-12-01
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.18.0"
22+
release = "0.18.1"
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.18.0",
4+
"$compas": "0.18.1",
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.18.0",
4+
"$compas": "0.18.1",
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.18.0",
4+
"$compas": "0.18.1",
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.18.0',
28+
version='0.18.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
@@ -36,7 +36,7 @@
3636
__license__ = 'MIT License'
3737
__email__ = '[email protected]'
3838

39-
__version__ = '0.18.0'
39+
__version__ = '0.18.1'
4040

4141

4242
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.18.0'
44+
__version__ = '0.18.1'
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.18.0'
21+
__version__ = '0.18.1'
2222

2323

2424
__all_plugins__ = ['compas_ghpython.install']

0 commit comments

Comments
 (0)