Skip to content

Commit fcefb66

Browse files
committed
Bump version to 1.3.0
1 parent 8416eed commit fcefb66

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 = 1.2.1
2+
current_version = 1.3.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
@@ -6,7 +6,7 @@ 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

88

9-
## Unreleased
9+
## [1.3.0] 2021-03-26
1010

1111
### Added
1212

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def patched_m2r2_setup(app):
3838
copyright = "Block Research Group - ETH Zurich"
3939
author = "Tom Van Mele"
4040

41-
release = "1.2.1"
41+
release = "1.3.0"
4242
version = ".".join(release.split(".")[0:2])
4343

4444
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": "1.2.1",
4+
"$compas": "1.3.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": "1.2.1",
4+
"$compas": "1.3.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/draft-07/schema#",
33
"$id": "https://github.com/compas-dev/compas/schemas/halfface.json",
4-
"$compas": "1.2.1",
4+
"$compas": "1.3.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='1.2.1',
28+
version='1.3.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
@@ -36,7 +36,7 @@
3636
__license__ = 'MIT License'
3737
__email__ = '[email protected]'
3838

39-
__version__ = '1.2.1'
39+
__version__ = '1.3.0'
4040

4141

4242
HERE = os.path.dirname(__file__)

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__ = '1.2.1'
44+
__version__ = '1.3.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
@@ -19,7 +19,7 @@
1919
from .utilities import * # noqa: F401 F403
2020

2121

22-
__version__ = '1.2.1'
22+
__version__ = '1.3.0'
2323

2424

2525
def get_grasshopper_library_path(version):

0 commit comments

Comments
 (0)