diff --git a/CHANGELOG.md b/CHANGELOG.md index 10c9d25..53b452d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Blender Cloud changelog +## Version 1.9.3 (2018-10-30) + +- Fix drawing of Attract strips in the VSE on Blender 2.8. + + ## Version 1.9.2 (2018-09-17) - No changes, just a different filename to force a refresh on our diff --git a/blender_cloud/__init__.py b/blender_cloud/__init__.py index d86363e..eae2217 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, 2), + 'version': (1, 9, 3), '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 0ddbcb3..2168134 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.2', + version='1.9.3', author='Sybren A. Stüvel', author_email='sybren@stuvel.eu', packages=find_packages('.'),