You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/02/27 23:57:44 UTC

svn commit: r1451014 - in /libcloud/trunk: ./ CHANGES libcloud/__init__.py

Author: tomaz
Date: Wed Feb 27 22:57:44 2013
New Revision: 1451014

URL: http://svn.apache.org/r1451014
Log:
Merge changes from 0.12.x.

Modified:
    libcloud/trunk/   (props changed)
    libcloud/trunk/CHANGES
    libcloud/trunk/libcloud/__init__.py

Propchange: libcloud/trunk/
------------------------------------------------------------------------------
  Merged /libcloud/branches/0.12.x:r1451001-1451013

Modified: libcloud/trunk/CHANGES
URL: http://svn.apache.org/viewvc/libcloud/trunk/CHANGES?rev=1451014&r1=1451013&r2=1451014&view=diff
==============================================================================
--- libcloud/trunk/CHANGES (original)
+++ libcloud/trunk/CHANGES Wed Feb 27 22:57:44 2013
@@ -1,16 +1,22 @@
                                    -*- coding: utf-8 -*-
 
-Changes with Apache Libcloud in development:
+Changes with Apache Libcloud 0.12.2:
 
-  *) Compute
+  *) General
 
-    -  Improve public and private IP address handling in OpenStack 1.1 driver.
-       Assume every IP address which doesn't have a label "public" or "internet"
-       is private. (LIBCLOUD-297)
-       [Grischa Meyer, Tomaz Muraus]
+    - Fix Python 3.x related regressions. (LIBCLOUD-245)
+      Reported by Arfrever Frehtes Taifersar Arahesis.
+      [Tomaz Muraus]
 
   *) Compute
 
+    - Improve public and private IP address handling in OpenStack 1.1 driver.
+      Assume every IP address which doesn't have a label "public" or "internet"
+      is private. (LIBCLOUD-297)
+      [Grischa Meyer, Tomaz Muraus]
+
+  *) DNS 
+
     - Allow user to specify 'priority' extra argument when creating a MX or SRV
       record.
       [Brian Jinwright, Tomaz Muraus]

Modified: libcloud/trunk/libcloud/__init__.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/__init__.py?rev=1451014&r1=1451013&r2=1451014&view=diff
==============================================================================
--- libcloud/trunk/libcloud/__init__.py (original)
+++ libcloud/trunk/libcloud/__init__.py Wed Feb 27 22:57:44 2013
@@ -20,7 +20,7 @@ libcloud provides a unified interface to
 """
 
 __all__ = ['__version__', 'enable_debug']
-__version__ = '0.12.0-dev'
+__version__ = '0.12.2-dev'
 
 try:
     import paramiko