Modified: libcloud/site/trunk/generated/blog/tags/release announcement.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/generated/blog/tags/release%20announcement.html?rev=1738505&r1=1738504&r2=1738505&view=diff ============================================================================== --- libcloud/site/trunk/generated/blog/tags/release announcement.html (original) +++ libcloud/site/trunk/generated/blog/tags/release announcement.html Mon Apr 11 04:28:43 2016 @@ -96,6 +96,277 @@ <div class="post"> + <h2><a href="/blog/2016/04/11/libcloud-1-0-0-rc2-released.html">Libcloud 1.0.0-rc2 released</a></h2> + + + + + + <span class="post-date-author">By Anthony Shaw on Apr 11, 2016</span> + + <div class="post-content"> + <p>We are pleased to announce the release of Libcloud 1.0.0-rc2.</p> + +<p>This the second pre-release in the 1.0.0 series which means it brings many new +features, improvements, bug-fixes, and DNS drivers.</p> + +<h3>Release highlights</h3> + +<p>This includes:</p> + +<ul> +<li>Deprecated drivers that were no longer available such as Ninefold, IBM SCE <a href="http://libcloud.apache.org/blog/2016/02/16/new-drivers-deprecated-drivers.html">more details</a></li> +<li>The Amazon EC2 driver has been changed to use</li> +<li>Introduce new <code>list_regions</code>` class method on the base driver class</li> +<li>Support for Dimension Data backup</li> +<li>Added NSOne, LuaDNS, NearlyFreeSpeech.NET DNS drivers</li> +<li>Added Aliyun compute, load balancer and storage drivers</li> +<li>Added Outscale storage driver</li> +</ul> + +<p>Full change log can be found at <a href="https://libcloud.readthedocs.org/en/latest/changelog.html">here</a>.</p> + +<h3>Important breaking change- Amazon EC2 driver changes</h3> + +<p>The Amazon EC2 API was updated to consolidate the regional-based drivers into a single driver with a region argument in the constructor.</p> + +<p>Amazon Instances should now be instantiated using the following syntax:</p> + +<div class="highlight"><pre><code class="python language-python" data-lang="python"><span class="kn">from</span> <span class="nn">libcloud.compute.types</span> <span class="kn">import</span> <span class="n">Provider</span> +<span class="kn">from</span> <span class="nn">libcloud.compute.providers</span> <span class="kn">import</span> <span class="n">get_driver</span> + +<span class="n">cls</span> <span class="o">=</span> <span class="n">get_driver</span><span class="p">(</span><span class="n">Provider</span><span class="o">.</span><span class="n">EC2</span><span class="p">,</span> <span class="n">region</span><span class="o">=</span><span class="s">'us-east-i1'</span><span class="p">)</span> +<span class="n">driver</span> <span class="o">=</span> <span class="n">cls</span><span class="p">(</span><span class="s">'access key'</span><span class="p">,</span> <span class="s">'secret key'</span><span class="p">)</span> +</code></pre></div> + +<p>This brings the Amazon API inline with the other drivers, makes it easier to maintain and switch between regions.</p> + +<h3>Bug fixes</h3> + +<h4>General</h4> + +<ul> +<li><p>Fix a bug with consuming stdout and stderr in the paramiko SSH client which +would manifest itself under very rare condition when a consumed chunk only +contained a single byte or part of a multi byte UTF-8 character. +[Lakshmi Kannan, Tomaz Muraus]</p></li> +<li><p>Increase default chunk size from <code>1024</code> to <code>4096</code> bytes in the paramiko +SSH client. This results in smaller number of receive calls on the average. +[Tomaz Muraus]</p></li> +<li><p>Fix to Dimension Data API address for Middle-East and Africa +(GITHUB-700) +[Anthony Shaw]</p></li> +<li><p>Addition of Dimension Data Australia federal government region to dimension data +drivers. +(GITHUB-700) +[Anthony Shaw]</p></li> +<li><p>Throw a more user-friendly exception on "No address associated with hostname". +(GITHUB-711, GITHUB-714, LIBCLOUD-803) +[Tomaz Muraus, Scott Crunkleton]</p></li> +<li><p>Remove deprecated provider constants with the region in the name and related +driver classes (e.g. <code>EC2_US_EAST</code>, etc.).</p> + +<p>Those drivers have moved to single provider constant + <code>region</code> constructor +argument model. +[Tomaz Muraus]</p></li> +<li><p>Introduce new <code>list_regions</code><code>class method on the base driver class. This +method is to be used with provider drivers which support multiple regions and +</code><code>region</code>` constructor argument. It allows users to enumerate available / +supported regions. +[Tomaz Muraus]</p></li> +</ul> + +<h3>New or deprecated drivers</h3> + +<h4>Compute</h4> + +<ul> +<li><p>Deprecated IBM SCE, HP Helion, OpSource, Ninefold and CloudFrames drivers, removed +driver code and tests. +(GITHUB-701, LIBCLOUD-801) +[Anthony Shaw]</p></li> +<li><p>Introduced error messages (<code>libcloud.compute.deprecated</code>) for deprecated drivers +(GITHUB-701, LIBCLOUD-801) +[Anthony Shaw]</p></li> +<li><p>New Compute drivers- BSNL, Indosat, Med-1, NTT-America, Internet Solutions +(GITHUB-700) +[Anthony Shaw]</p></li> +<li><p>New driver for Aliyun Elastic Compute Service. +(LIBCLOUD-802, GITHUB-712) +[Sam Song]</p></li> +</ul> + +<h4>Storage</h4> + +<ul> +<li><p>Added Outscale storage driver +(GITHUB-730) +[Javier M. Mellid]</p></li> +<li><p>New driver for Aliyun OSS Storage Service. +(LIBCLOUD-802, GITHUB-712) +[Sam Song]</p></li> +</ul> + +<h4>Loadbalancer</h4> + +<ul> +<li>New driver for Aliyun SLB Loadbalancer Service. +(LIBCLOUD-802, GITHUB-712) +[Sam Song]</li> +</ul> + +<h4>DNS</h4> + +<ul> +<li><p>Added NearlyFreeSpeech.net (NSFN) driver +<a href="GITHUB-733">Ken Drayer</a></p></li> +<li><p>Added Lua DNS driver +<a href="GITHUB-732">Oltjano Terpollari</a></p></li> +<li><p>Added NSOne driver +<a href="GITHUB-710">Oltjano Terpollari</a></p></li> +</ul> + +<h2>Bug fixes</h2> + +<ul> +<li><p>Fix a bug in the GoDaddy driver - make sure <code>host</code> attribute on the +connection class is correctly set to the hostname. +[Tomaz Muraus]</p></li> +<li><p>Fix handling of <code>MX</code> records in the Gandi driver. +(GITHUB-718) +[Ryan Lee]</p></li> +</ul> + +<h2>Improvements</h2> + +<h3>Compute</h3> + +<ul> +<li><p>[dimension data] added support for VMWare tools VM information inside list_nodes responses +(GITHUB-734) +[Jeff Dunham]</p></li> +<li><p>[ec2] added ex<em>encrypted and ex</em>kms<em>key</em>id optional parameters to the create volume method +(GITHUB-729) +[Viktor Ognev]</p></li> +<li><p>[dimension data] added support for managing host anti-affinity rules, added paging support to +all supported calls and added support for requesting priority ordering when creating ACL rules +(GITHUB-726) +[Jeff Dunham]</p></li> +<li><p>[openstack] when creating floating IPs, added pool_id as an optional argument +(GITHUB-725) +[marko-p]</p></li> +<li><p>[google compute] Added setMachineType method to allow for changing sizes of instances +(GITHUB-721) +[Eric Johnson]</p></li> +<li><p>[google compute] allow bypassing image search in standard project list +(GITHUB-713) +[Max Illfelder]</p></li> +<li><p>Add support for requesting a MKS token for accessing the remote console in VMware +vCloud driver +(GITHUB-706) +[Juan Font Alonso]</p></li> +<li><p>Add support in VMware vCloud driver for v5.5 API, with snapshot support +(GITHUB-658) +[Juan Font Alonso]</p></li> +<li><p>Added support for adding a family to an image on Google Compute Driver +(GITHUB-704) +[Max Illfelder]</p></li> +<li><p>Fix to set default signature version for AWS Seoul region to v4, removed +non-supported size (hs1.xlarge) +(GITHUB-684) +[Geunwoo Shin]</p></li> +<li><p>Support filtering by location in list_nodes for dimension data compute driver +fix lack of paging support +(GITHUB-691) +[Jeff Dunham]</p></li> +<li><p>Support for filtering by IPv4, IPv6, network, network domain, VLAN in Dimension +data driver. +(GITHUB-694) +[Jeff Dunham]</p></li> +<li><p>Added <code>Node.created_at</code> which, on supported drivers, contains the datetime the +node was first started. +(GITHUB-698) +[Allard Hoeve] [Rick van de Loo]</p></li> +</ul> + +<h3>Storage</h3> + +<ul> +<li><p>Improvements to Google Auth for Storage and Compute and MIME bug fix +(LIBCLOUD-800, GITHUB-689) +[Scott Crunkleton]</p></li> +<li><p>Implement <code>get_container</code>, <code>get_object</code> and <code>upload_object_via_stream</code> +methods in the Backblaze B2 storage driver.</p> + +<p>Note: Backblaze API doesn't upload streaming uploads so when using +<code>upload_object_via_stream</code> whole file is read and buffered in memory. +(GITHUB-696) +[Jay jshridha]</p></li> +</ul> + +<h3>Backup</h3> + +<ul> +<li>Dimension Data - added additional testing, fixed bug on client response naming, +added support for adding backup clients to a backup enabled node. +(GITHUB-692, GITHUB-693, GITHUB-695) +[Jeff Dunham]</li> +</ul> + +<h3>Download</h3> + +<p>The release can can be downloaded from +<a href="https://libcloud.apache.org/downloads.html">https://libcloud.apache.org/downloads.html</a> or installed using pip:</p> + +<pre> +pip install apache-libcloud==1.0.0-rc2 +</pre> + +<h3>Upgrading</h3> + +<p>If you have installed Libcloud using pip you can also use it to upgrade it:</p> + +<pre> +pip install --upgrade apache-libcloud==1.0.0-rc2 +</pre> + +<h3>Upgrade notes</h3> + +<p>A page which describes backward incompatible or semi-incompatible +changes and how to preserve the old behavior when this is possible +can be found at <a href="https://libcloud.readthedocs.org/en/latest/upgrade_notes.html">https://libcloud.readthedocs.org/en/latest/upgrade_notes.html</a></p> + +<h3>Documentation</h3> + +<p>Regular and API documentation is available at <a href="https://libcloud.readthedocs.org/en/latest/">https://libcloud.readthedocs.org/en/latest/</a></p> + +<h3>Bugs / Issues</h3> + +<p>If you find any bug or issue, please report it on our issue tracker +<a href="https://issues.apache.org/jira/browse/LIBCLOUD">https://issues.apache.org/jira/browse/LIBCLOUD</a>. +Don't forget to attach an example and / or test which reproduces your +problem.</p> + +<h3>Thanks</h3> + +<p>Thanks to everyone who contributed and made this release possible! Full +list of people who contributed to this release can be found in the +<a href="https://libcloud.readthedocs.org/en/latest/changelog.html">CHANGES file</a>.</p> + + </div> + + <div class="row section post-meta"> + <div class="col-md-12 post-tags"> + <p>Tags: <a href="/blog/tags/news.html" rel="tag">news</a>, <a href="/blog/tags/release%20announcement.html" rel="tag">release announcement</a></p> + </div> + </div> +</div> + + + + + <div class="post"> + <h2><a href="/blog/2016/01/26/libcloud-1-0-0-pre1-released.html">Libcloud 1.0.0-pre1 released</a></h2>
Modified: libcloud/site/trunk/generated/downloads.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/generated/downloads.html?rev=1738505&r1=1738504&r2=1738505&view=diff ============================================================================== --- libcloud/site/trunk/generated/downloads.html (original) +++ libcloud/site/trunk/generated/downloads.html Mon Apr 11 04:28:43 2016 @@ -123,12 +123,12 @@ interested in an older release, please v <p>Upgrade notes: <a href="https://libcloud.readthedocs.org/en/latest/upgrade_notes.html#libcloud-0.20.1">Click</a></p> -<p><a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 1.0.0-pre1 (preview, unstable) - Released on January 26, 2016</h2></a></p> +<p><a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 1.0.0-rc2 (preview, unstable) - Released on April 11, 2016</h2></a></p> <p>Files:</p> <ul> -<li><a href="http://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-1.0.0-pre1.tar.gz">apache-libcloud-1.0.0-pre1.tar.gz</a> [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.asc">asc</a>] [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.sha1">sha1</a>] [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.md5">md5</a>]</li> +<li><a href="http://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-1.0.0-rc2.tar.gz">apache-libcloud-1.0.0-rc2.tar.gz</a> [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.asc">asc</a>] [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.sha1">sha1</a>] [<a href="http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.md5">md5</a>]</li> </ul> <p>You are strongly encouraged to verify those packages using the <a href="https://www.apache.org/dist/libcloud/KEYS">Apache Libcloud Modified: libcloud/site/trunk/generated/index.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/generated/index.html?rev=1738505&r1=1738504&r2=1738505&view=diff ============================================================================== --- libcloud/site/trunk/generated/index.html (original) +++ libcloud/site/trunk/generated/index.html Mon Apr 11 04:28:43 2016 @@ -241,19 +241,19 @@ <h3>Latest Blog Posts</h3> - <p><a href="/blog/2016/04/06/requests-support.html">Experimental support for the requests package</a> + <p><a href="/blog/2016/04/11/libcloud-1-0-0-rc2-released.html">Libcloud 1.0.0-rc2 released</a> - <p><a href="/blog/2016/02/16/new-drivers-deprecated-drivers.html">New compute drivers and deprecated drivers in 1.0</a> + <p><a href="/blog/2016/04/06/requests-support.html">Experimental support for the requests package</a> - <p><a href="/blog/2016/02/05/libcloud-containers-example.html">Using the container abstraction API in 1.0.0-pre1</a> + <p><a href="/blog/2016/02/16/new-drivers-deprecated-drivers.html">New compute drivers and deprecated drivers in 1.0</a> - <p><a href="/blog/2016/01/26/libcloud-1-0-0-pre1-released.html">Libcloud 1.0.0-pre1 released</a> + <p><a href="/blog/2016/02/05/libcloud-containers-example.html">Using the container abstraction API in 1.0.0-pre1</a> Modified: libcloud/site/trunk/generated/sitemap.xml URL: http://svn.apache.org/viewvc/libcloud/site/trunk/generated/sitemap.xml?rev=1738505&r1=1738504&r2=1738505&view=diff ============================================================================== --- libcloud/site/trunk/generated/sitemap.xml (original) +++ libcloud/site/trunk/generated/sitemap.xml Mon Apr 11 04:28:43 2016 @@ -317,6 +317,10 @@ <lastmod>2016-04-06T00:00:00+10:00</lastmod> </url> <url> + <loc>https://libcloud.apache.org/blog/2016/04/11/libcloud-1-0-0-rc2-released.html</loc> + <lastmod>2016-04-11T00:00:00+10:00</lastmod> + </url> + <url> <loc>https://libcloud.apache.org/about.html</loc> <lastmod>2015-12-16T13:21:49+11:00</lastmod> </url> @@ -338,7 +342,7 @@ </url> <url> <loc>https://libcloud.apache.org/downloads.html</loc> - <lastmod>2016-02-05T12:51:52+11:00</lastmod> + <lastmod>2016-04-11T13:59:06+10:00</lastmod> </url> <url> <loc>https://libcloud.apache.org/gsoc-2012.html</loc> @@ -346,7 +350,7 @@ </url> <url> <loc>https://libcloud.apache.org/</loc> - <lastmod>2016-04-06T15:34:01+10:00</lastmod> + <lastmod>2016-04-11T14:27:05+10:00</lastmod> </url> <url> <loc>https://libcloud.apache.org/getting-started.html</loc> @@ -366,7 +370,7 @@ </url> <url> <loc>https://libcloud.apache.org/blog/blog/</loc> - <lastmod>2016-04-06T15:34:01+10:00</lastmod> + <lastmod>2016-04-11T14:27:05+10:00</lastmod> </url> <url> <loc>https://libcloud.apache.org/security.html</loc> Added: libcloud/site/trunk/source/_posts/2016-04-11-libcloud-1-0-0-rc2-released.md URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/_posts/2016-04-11-libcloud-1-0-0-rc2-released.md?rev=1738505&view=auto ============================================================================== --- libcloud/site/trunk/source/_posts/2016-04-11-libcloud-1-0-0-rc2-released.md (added) +++ libcloud/site/trunk/source/_posts/2016-04-11-libcloud-1-0-0-rc2-released.md Mon Apr 11 04:28:43 2016 @@ -0,0 +1,270 @@ +--- +layout: post +title: Libcloud 1.0.0-rc2 released +author: Anthony Shaw +tags: + - news + - release announcement +--- + +We are pleased to announce the release of Libcloud 1.0.0-rc2. + +This the second pre-release in the 1.0.0 series which means it brings many new +features, improvements, bug-fixes, and DNS drivers. + +### Release highlights + +This includes: + +* Deprecated drivers that were no longer available such as Ninefold, IBM SCE [more details][9] +* The Amazon EC2 driver has been changed to use +* Introduce new `list_regions`` class method on the base driver class +* Support for Dimension Data backup +* Added NSOne, LuaDNS, NearlyFreeSpeech.NET DNS drivers +* Added Aliyun compute, load balancer and storage drivers +* Added Outscale storage driver + +Full change log can be found at [here][1]. + +### Important breaking change- Amazon EC2 driver changes + +The Amazon EC2 API was updated to consolidate the regional-based drivers into a single driver with a region argument in the constructor. + +Amazon Instances should now be instantiated using the following syntax: + +```python +from libcloud.compute.types import Provider +from libcloud.compute.providers import get_driver + +cls = get_driver(Provider.EC2, region='us-east-i1') +driver = cls('access key', 'secret key') +``` + +This brings the Amazon API inline with the other drivers, makes it easier to maintain and switch between regions. + +### Bug fixes + +#### General + +- Fix a bug with consuming stdout and stderr in the paramiko SSH client which + would manifest itself under very rare condition when a consumed chunk only + contained a single byte or part of a multi byte UTF-8 character. + [Lakshmi Kannan, Tomaz Muraus] + +- Increase default chunk size from ``1024`` to ``4096`` bytes in the paramiko + SSH client. This results in smaller number of receive calls on the average. + [Tomaz Muraus] + +- Fix to Dimension Data API address for Middle-East and Africa + (GITHUB-700) + [Anthony Shaw] + +- Addition of Dimension Data Australia federal government region to dimension data + drivers. + (GITHUB-700) + [Anthony Shaw] + +- Throw a more user-friendly exception on "No address associated with hostname". + (GITHUB-711, GITHUB-714, LIBCLOUD-803) + [Tomaz Muraus, Scott Crunkleton] + +* Remove deprecated provider constants with the region in the name and related + driver classes (e.g. ``EC2_US_EAST``, etc.). + + Those drivers have moved to single provider constant + ``region`` constructor + argument model. + [Tomaz Muraus] + +* Introduce new `list_regions`` class method on the base driver class. This + method is to be used with provider drivers which support multiple regions and + ``region`` constructor argument. It allows users to enumerate available / + supported regions. + [Tomaz Muraus] + +### New or deprecated drivers + +#### Compute + +- Deprecated IBM SCE, HP Helion, OpSource, Ninefold and CloudFrames drivers, removed + driver code and tests. + (GITHUB-701, LIBCLOUD-801) + [Anthony Shaw] + +- Introduced error messages (`libcloud.compute.deprecated`) for deprecated drivers + (GITHUB-701, LIBCLOUD-801) + [Anthony Shaw] + +- New Compute drivers- BSNL, Indosat, Med-1, NTT-America, Internet Solutions + (GITHUB-700) + [Anthony Shaw] + +- New driver for Aliyun Elastic Compute Service. + (LIBCLOUD-802, GITHUB-712) + [Sam Song] + +#### Storage + +- Added Outscale storage driver + (GITHUB-730) + [Javier M. Mellid] + +- New driver for Aliyun OSS Storage Service. + (LIBCLOUD-802, GITHUB-712) + [Sam Song] + +#### Loadbalancer + +- New driver for Aliyun SLB Loadbalancer Service. + (LIBCLOUD-802, GITHUB-712) + [Sam Song] + +#### DNS + +- Added NearlyFreeSpeech.net (NSFN) driver + [Ken Drayer] + (GITHUB-733) + +- Added Lua DNS driver + [Oltjano Terpollari] + (GITHUB-732) + +- Added NSOne driver + [Oltjano Terpollari] + (GITHUB-710) + +## Bug fixes + +- Fix a bug in the GoDaddy driver - make sure ``host`` attribute on the + connection class is correctly set to the hostname. + [Tomaz Muraus] + +- Fix handling of ``MX`` records in the Gandi driver. + (GITHUB-718) + [Ryan Lee] + + +## Improvements + +### Compute + +- [dimension data] added support for VMWare tools VM information inside list_nodes responses + (GITHUB-734) + [Jeff Dunham] + +- [ec2] added ex_encrypted and ex_kms_key_id optional parameters to the create volume method + (GITHUB-729) + [Viktor Ognev] + +- [dimension data] added support for managing host anti-affinity rules, added paging support to + all supported calls and added support for requesting priority ordering when creating ACL rules + (GITHUB-726) + [Jeff Dunham] + +- [openstack] when creating floating IPs, added pool_id as an optional argument + (GITHUB-725) + [marko-p] + +- [google compute] Added setMachineType method to allow for changing sizes of instances + (GITHUB-721) + [Eric Johnson] + +- [google compute] allow bypassing image search in standard project list + (GITHUB-713) + [Max Illfelder] + +- Add support for requesting a MKS token for accessing the remote console in VMware + vCloud driver + (GITHUB-706) + [Juan Font Alonso] + +- Add support in VMware vCloud driver for v5.5 API, with snapshot support + (GITHUB-658) + [Juan Font Alonso] + +- Added support for adding a family to an image on Google Compute Driver + (GITHUB-704) + [Max Illfelder] + +- Fix to set default signature version for AWS Seoul region to v4, removed + non-supported size (hs1.xlarge) + (GITHUB-684) + [Geunwoo Shin] + +- Support filtering by location in list_nodes for dimension data compute driver + fix lack of paging support + (GITHUB-691) + [Jeff Dunham] + +- Support for filtering by IPv4, IPv6, network, network domain, VLAN in Dimension + data driver. + (GITHUB-694) + [Jeff Dunham] + +- Added `Node.created_at` which, on supported drivers, contains the datetime the + node was first started. + (GITHUB-698) + [Allard Hoeve] [Rick van de Loo] + +### Storage + +- Improvements to Google Auth for Storage and Compute and MIME bug fix + (LIBCLOUD-800, GITHUB-689) + [Scott Crunkleton] + +- Implement ``get_container``, ``get_object`` and ``upload_object_via_stream`` + methods in the Backblaze B2 storage driver. + + Note: Backblaze API doesn't upload streaming uploads so when using + ``upload_object_via_stream`` whole file is read and buffered in memory. + (GITHUB-696) + [Jay jshridha] + +### Backup + +- Dimension Data - added additional testing, fixed bug on client response naming, + added support for adding backup clients to a backup enabled node. + (GITHUB-692, GITHUB-693, GITHUB-695) + [Jeff Dunham] + +### Download + +The release can can be downloaded from +<https://libcloud.apache.org/downloads.html> or installed using pip: + +<pre> +pip install apache-libcloud==1.0.0-rc2 +</pre> + +### Upgrading + +If you have installed Libcloud using pip you can also use it to upgrade it: + +<pre> +pip install --upgrade apache-libcloud==1.0.0-rc2 +</pre> + +### Upgrade notes + +A page which describes backward incompatible or semi-incompatible +changes and how to preserve the old behavior when this is possible +can be found at <https://libcloud.readthedocs.org/en/latest/upgrade_notes.html> + +### Documentation + +Regular and API documentation is available at <https://libcloud.readthedocs.org/en/latest/> + +### Bugs / Issues + +If you find any bug or issue, please report it on our issue tracker +<https://issues.apache.org/jira/browse/LIBCLOUD>. +Don't forget to attach an example and / or test which reproduces your +problem. + +### Thanks + +Thanks to everyone who contributed and made this release possible! Full +list of people who contributed to this release can be found in the +[CHANGES file][1]. + +[1]: https://libcloud.readthedocs.org/en/latest/changelog.html +[9]: http://libcloud.apache.org/blog/2016/02/16/new-drivers-deprecated-drivers.html Modified: libcloud/site/trunk/source/downloads.md URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/downloads.md?rev=1738505&r1=1738504&r2=1738505&view=diff ============================================================================== --- libcloud/site/trunk/source/downloads.md (original) +++ libcloud/site/trunk/source/downloads.md Mon Apr 11 04:28:43 2016 @@ -19,11 +19,11 @@ Files: Upgrade notes: [Click][17] -<a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 1.0.0-pre1 (preview, unstable) - Released on January 26, 2016</h2></a> +<a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 1.0.0-rc2 (preview, unstable) - Released on April 11, 2016</h2></a> Files: -* [apache-libcloud-1.0.0-pre1.tar.gz][20] [[asc][21]] [[sha1][22]] [[md5][23]] +* [apache-libcloud-1.0.0-rc2.tar.gz][20] [[asc][21]] [[sha1][22]] [[md5][23]] You are strongly encouraged to verify those packages using the [Apache Libcloud developers KEYS][14]. You can find information on how to do that in the @@ -192,7 +192,7 @@ gpg: BAD signature from "Paul Querna <.. [17]: https://libcloud.readthedocs.org/en/latest/upgrade_notes.html#libcloud-0.20.1 [18]: https://github.com/apache/libcloud [19]: https://git-wip-us.apache.org/repos/asf/libcloud.git -[20]: http://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-1.0.0-pre1.tar.gz -[21]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.asc -[22]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.sha1 -[23]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-pre1.tar.gz.md5 +[20]: http://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-1.0.0-rc2.tar.gz +[21]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.asc +[22]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.sha1 +[23]: http://www.apache.org/dist/libcloud/apache-libcloud-1.0.0-rc2.tar.gz.md5