Skip to content

Commit 4bbe8f1

Browse files
committed
Release for Alpha.2
1 parent 3497094 commit 4bbe8f1

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
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 = 2.0.0-alpha.1
2+
current_version = 2.0.0-alpha.2
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Changed
13+
14+
### Removed
15+
16+
17+
## [2.0.0-alpha.2] 2023-11-07
18+
19+
### Added
20+
1221
* Added `Frame.axes`
1322
* Added `compas.datastructures.TreeNode` and `compas.datastructures.Tree` classes.
1423
* Added `EllipseArtist` to `compas_rhino` and `compas_ghpython`.

setup.py

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

2323
setup(
2424
name="COMPAS",
25-
version="2.0.0-alpha.1",
25+
version="2.0.0-alpha.2",
2626
description="The COMPAS framework",
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association"
2424
__license__ = "MIT License"
2525
__email__ = "[email protected]"
26-
__version__ = "2.0.0-alpha.1"
26+
__version__ = "2.0.0-alpha.2"
2727

2828
version = LooseVersion(compas.__version__)
2929
versionstring = version.vstring.split("-")[0]

src/compas_blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def redraw():
3535
bpy.ops.wm.redraw_timer(type="DRAW_WIN_SWAP", iterations=1)
3636

3737

38-
__version__ = "2.0.0-alpha.1"
38+
__version__ = "2.0.0-alpha.2"
3939

4040

4141
def _check_blender_version(version):

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import compas
2121
import compas_rhino
2222

23-
__version__ = "2.0.0-alpha.1"
23+
__version__ = "2.0.0-alpha.2"
2424

2525
if compas.is_rhino():
2626
from .utilities import * # noqa: F401 F403

src/compas_rhino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from .utilities import * # noqa: F401 F403
3030

3131

32-
__version__ = "2.0.0-alpha.1"
32+
__version__ = "2.0.0-alpha.2"
3333

3434

3535
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)