Skip to content

Commit 105f864

Browse files
committed
undo release and set back to 3.9 for release workflow
1 parent a1b1b19 commit 105f864

File tree

10 files changed

+10
-19
lines changed

10 files changed

+10
-19
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.14.0
2+
current_version = 1.13.3
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}
4242
draft: ${{ steps.changelog_reader.outputs.status == 'unreleased' }}
4343

44-
- name: Set up Python 3.10
44+
- name: Set up Python 3.9
4545
uses: actions/setup-python@v2
4646
with:
47-
python-version: 3.10
47+
python-version: 3.9
4848

4949
- uses: compas-dev/[email protected]
5050
with:

CHANGELOG.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@ 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-
## [1.14.0] 2022-02-06
18-
19-
### Added
20-
2112
* Added `compas.colors.Color`.
2213
* Added `compas.colors.ColorMap`.
2314
* Added `compas_blender.conversions.BlenderGeometry`.

docs/conf.py

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

43-
release = "1.14.0"
43+
release = "1.13.3"
4444
version = ".".join(release.split(".")[0:2])
4545

4646
master_doc = "index"

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.14.0',
28+
version='1.13.3',
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
@@ -41,7 +41,7 @@
4141
__license__ = 'MIT License'
4242
__email__ = '[email protected]'
4343

44-
__version__ = '1.14.0'
44+
__version__ = '1.13.3'
4545

4646
version = LooseVersion(compas.__version__)
4747
versionstring = version.vstring.split('-')[0]

src/compas_blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def redraw():
5151
bpy.ops.wm.redraw_timer(type='DRAW_WIN_SWAP', iterations=1)
5252

5353

54-
__version__ = '1.14.0'
54+
__version__ = '1.13.3'
5555

5656

5757
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__ = '1.14.0'
23+
__version__ = '1.13.3'
2424

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

src/compas_plotters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
"""
1616

17-
__version__ = '1.14.0'
17+
__version__ = '1.13.3'
1818

1919
from .core import * # noqa: F401 F403
2020
# from .artists 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__ = '1.14.0'
32+
__version__ = '1.13.3'
3333

3434

3535
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)