Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
.

change test
  • Loading branch information
earthmant committed Mar 24, 2020
1 parent f62f9e7 commit 4deb10b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
3.2.12:
- Support previously base64 encoded userdata.
3.2.11:
- Keystone V3 validation to refer to docs URL in case of missing configuration.
- Add public_ip property when using server_connected_to_floating_ip and if use_public_ip is set True.
Expand Down
4 changes: 2 additions & 2 deletions openstack_plugin/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def setUp(self):
super(UtilsTestCase, self).setUp()

def test_base64_encoding(self):
encoded_string = base64.encode('foo')
not_encoded_string = ''
encoded_string = base64.b64encode('foo')
not_encoded_string = 'foo'
self.assertTrue(is_userdata_encoded(encoded_string))
self.assertFalse(is_userdata_encoded(not_encoded_string))
4 changes: 2 additions & 2 deletions plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ plugins:

openstack:
executor: central_deployment_agent
source: https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/3.2.11.zip
source: https://github.com/cloudify-cosmo/cloudify-openstack-plugin/archive/3.2.12.zip
package_name: cloudify-openstack-plugin
package_version: '3.2.11'
package_version: '3.2.12'

dsl_definitions:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name='cloudify-openstack-plugin',
version='3.2.11',
version='3.2.12',
author='Cloudify',
author_email='[email protected]',
license='LICENSE',
Expand Down

0 comments on commit 4deb10b

Please sign in to comment.