2
0
Эх сурвалжийг харах

Update CHANGELOG for Aug 10 2016 release; bump version.

Enis Afgan 9 жил өмнө
parent
commit
0122fb1173

+ 11 - 0
CHANGELOG.rst

@@ -1,3 +1,14 @@
+0.1.1 - Aug 10, 2016.
+-------
+
+* For AWS, always launch instances into private networking (i.e., VPC)
+* Support for using OpenStack Keystone v3
+* Add functionality to manipulate routers and routes
+* Add FloatingIP resource type and integrate with Network service
+* Numerous documentation updates
+* For an OpenStack provider, add method to get the ec2 credentials for a user
+
+
 0.1.0 - Jan 30, 2016.
 0.1.0 - Jan 30, 2016.
 -------
 -------
 
 

+ 2 - 2
cloudbridge/__init__.py

@@ -2,12 +2,12 @@ import logging
 import sys
 import sys
 
 
 # Current version of the library
 # Current version of the library
-__version__ = '0.1.0'
+__version__ = '0.1.1'
 
 
 
 
 def get_version():
 def get_version():
     """
     """
-    Returns a string with the current version of the library (e.g., "0.1.0")
+    Return a string with the current version of the library (e.g., "0.1.0").
     """
     """
     return __version__
     return __version__