diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf1c32..256543f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Blender Cloud changelog -## Version 2.0 (in development) +## Version 1.9 (2018-09-05) +- Last version to support Blender versions before 2.80! - Replace BAM with BAT🦇. - Don't crash the texture browser when an invalid texture is seen. - Support colour strips as Attract shots. -- Blender 2.8 support (work in progress). - Flamenco: allow jobs to be created in 'paused' state. - Flamenco: only show Flamenco Managers that are linked to the currently selected project. diff --git a/blender_cloud/__init__.py b/blender_cloud/__init__.py index 520f628..8cbef78 100644 --- a/blender_cloud/__init__.py +++ b/blender_cloud/__init__.py @@ -21,7 +21,7 @@ bl_info = { 'name': 'Blender Cloud', "author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis", - 'version': (1, 9, 999), + 'version': (1, 9), 'blender': (2, 80, 0), 'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser', 'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon ' diff --git a/setup.py b/setup.py index ba06642..eef0f25 100755 --- a/setup.py +++ b/setup.py @@ -228,7 +228,7 @@ setup( 'wheels': BuildWheels}, name='blender_cloud', description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.', - version='1.9.999', + version='1.9', author='Sybren A. Stüvel', author_email='sybren@stuvel.eu', packages=find_packages('.'),