Skip to content

Commit e5a8fa0

Browse files
committed
Use SemVer2
1 parent 59e3d4a commit e5a8fa0

File tree

7 files changed

+16
-7
lines changed

7 files changed

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

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@ 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-
## [2.0.0a0] 2023-09-20
8+
## Unreleased
9+
10+
### Added
11+
12+
### Changed
13+
14+
### Removed
15+
16+
17+
## [2.0.0-alpha.1] 2023-09-20
918

1019
### Added
1120

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.0a0",
25+
version="2.0.0-alpha.1",
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.0a0"
26+
__version__ = "2.0.0-alpha.1"
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.0a0"
38+
__version__ = "2.0.0-alpha.1"
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.0a0"
23+
__version__ = "2.0.0-alpha.1"
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.0a0"
32+
__version__ = "2.0.0-alpha.1"
3333

3434

3535
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)