Bläddra i källkod

Update CHANGELOG for Aug 10 2016 release; bump version.

Enis Afgan 9 år sedan
förälder
incheckning
0122fb1173
2 ändrade filer med 13 tillägg och 2 borttagningar
  1. 11 0
      CHANGELOG.rst
  2. 2 2
      cloudbridge/__init__.py

+ 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.
 -------
 

+ 2 - 2
cloudbridge/__init__.py

@@ -2,12 +2,12 @@ import logging
 import sys
 
 # Current version of the library
-__version__ = '0.1.0'
+__version__ = '0.1.1'
 
 
 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__