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 2020/01/02 19:53:44 UTC

svn commit: r1872261 [10/10] - in /libcloud/site/trunk: generated/ generated/assets/ generated/blog/ generated/blog/2010/02/02/ generated/blog/2010/05/11/ generated/blog/2010/10/12/ generated/blog/2011/01/17/ generated/blog/2011/02/15/ generated/blog/2...

Modified: libcloud/site/trunk/generated/whois-using.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/generated/whois-using.html?rev=1872261&r1=1872260&r2=1872261&view=diff
==============================================================================
--- libcloud/site/trunk/generated/whois-using.html (original)
+++ libcloud/site/trunk/generated/whois-using.html Thu Jan  2 19:53:42 2020
@@ -51,7 +51,7 @@
 
     
 
-    <link href='/assets/global-73ae5b95993dad7a856dae3f60df3e3c.css' rel='stylesheet' type='text/css' />
+    <link href='/assets/global-140a5c5bd4aaacea6b89074520e5562b.css' rel='stylesheet' type='text/css' />
 
   </head>
 
@@ -281,7 +281,7 @@ please <a href="https://libcloud.readthe
 </div>
 
 <div class="footer-text">
-  <p class="">Copyright &copy; 2009-2019 <a href="https://www.apache.org/" target="_blank">The Apache Software Foundation</a></p>
+  <p class="">Copyright &copy; 2009-2020 <a href="https://www.apache.org/" target="_blank">The Apache Software Foundation</a></p>
   <p class="">Apache Libcloud, Libcloud, Apache, the Apache feather, and the Apache Libcloud project logo are trademarks of the Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</p>
 </div>
 
@@ -292,7 +292,7 @@ please <a href="https://libcloud.readthe
     </div><!-- /.container -->
 
     <!-- JavaScript -->
-    <script src='/assets/global-dfa80e7474b58ee1c1f578e43dccac44.js' type='text/javascript'></script>
+    <script src='/assets/global-c6c762cf30e99cb14d2cfafae2f87ab3.js' type='text/javascript'></script>
 
 
     

Modified: libcloud/site/trunk/source/_posts/2019-12-09-libcloud-2-7-0-released.md
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/_posts/2019-12-09-libcloud-2-7-0-released.md?rev=1872261&r1=1872260&r2=1872261&view=diff
==============================================================================
--- libcloud/site/trunk/source/_posts/2019-12-09-libcloud-2-7-0-released.md (original)
+++ libcloud/site/trunk/source/_posts/2019-12-09-libcloud-2-7-0-released.md Thu Jan  2 19:53:42 2020
@@ -26,7 +26,7 @@ Highlights include:
   backward compatibility reasons.
 
 Full change log can be found at
-<http://libcloud.readthedocs.io/en/latest/changelog.html#changes-in-apache-libcloud-2.7.0>.
+<https://libcloud.readthedocs.io/en/latest/changelog.html#changes-in-apache-libcloud-v2-7-0>.
 
 ### Dropping support for Python 2.7 and Python 3.4
 
@@ -118,6 +118,6 @@ Thanks to everyone who contributed and m
 list of people who contributed to this release can be found in the
 [CHANGES file][1].
 
-[1]: https://libcloud.readthedocs.org/en/v2.7.1/changelog.html
+[1]: https://libcloud.readthedocs.org/en/v2.7.0/changelog.html
 [2]: https://python3statement.org/
 [3]: https://pythonclock.org/

Added: libcloud/site/trunk/source/_posts/2020-01-02-libcloud-2-8-0-released.md
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/_posts/2020-01-02-libcloud-2-8-0-released.md?rev=1872261&view=auto
==============================================================================
--- libcloud/site/trunk/source/_posts/2020-01-02-libcloud-2-8-0-released.md (added)
+++ libcloud/site/trunk/source/_posts/2020-01-02-libcloud-2-8-0-released.md Thu Jan  2 19:53:42 2020
@@ -0,0 +1,82 @@
+---
+layout: post
+title: Libcloud 2.8.0 released
+author: Tomaz Muraus
+tags:
+  - news
+  - release announcement
+---
+
+We are pleased to announce the release of Libcloud 2.8.0.
+
+This release includes various changes, most notable ones being:
+
+* Distribution now includes ``py.typed`` file which signals mypy that
+  this package contains type annotations (currently only for the
+  base compute API).
+* Fix wheel metadata. There was a bug where conditional dependencies
+  were not specified correctly so it would try to install ``typing``
+  and ``enum34`` dependency on Python versions where there is not needed.
+* Fix ``get_driver()`` bug / regression not working if the ``provider``
+  argument was a string and not a Provider ENUM.
+
+Full change log can be found at
+<https://libcloud.readthedocs.io/en/latest/changelog.html#changes-in-apache-libcloud-v2-8-0>.
+
+### Dropping support for Python 2.7 and Python 3.4
+
+The plan was for v2.7.0 to be the last major release before v3.0.0 which
+drops support for Python 2.7 and Python 3.4, but this has changed since
+v2.7.0 introduced some small regressions / bugs which needed to be fixed.
+
+If no major issues are found in this release, this will be the
+last release before v3.0.0 which drops support for those Python
+versions.
+
+For more information on dropping support for Python 2.7 and Python 3.4, please
+refer to the v2.7.0 release announcement
+<https://libcloud.apache.org/blog/2019/12/09/libcloud-2-7-0-released.html>.
+
+### Download
+
+The release can can be downloaded from
+<https://libcloud.apache.org/downloads.html> or installed using pip:
+
+<pre>
+pip install "apache-libcloud==2.8.0"
+</pre>
+
+### Upgrading
+
+If you have installed Libcloud using pip you can also use it to upgrade it:
+
+<pre>
+pip install --upgrade "apache-libcloud==2.8.0"
+</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/v2.8.0/>
+
+### Bugs / Issues
+
+If you find any bug or issue, please report it on our issue tracker
+<https://github.com/apache/libcloud/issues>.
+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/v2.8.0/changelog.html
+[2]: https://python3statement.org/
+[3]: https://pythonclock.org/

Modified: libcloud/site/trunk/source/downloads.md
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/downloads.md?rev=1872261&r1=1872260&r2=1872261&view=diff
==============================================================================
--- libcloud/site/trunk/source/downloads.md (original)
+++ libcloud/site/trunk/source/downloads.md Thu Jan  2 19:53:42 2020
@@ -9,13 +9,13 @@ description: Download the latest version
 This page contains link to the latest stable release of Libcloud. If you are
 interested in an older release, please visit the [archive page][15].
 
-<a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 2.7.0 (stable) - Released on December 9, 2019</h2></a>
+<a name="latest-stable-release" id="latest-stable-release"><h2 class="anchor">Libcloud 2.8.0 (stable) - Released on January 2, 2020</h2></a>
 
 Files:
 
-* [apache-libcloud-2.7.0.tar.gz][2] [[asc][3]] [[sha256][4]] [[sha512][5]]
-* [apache-libcloud-2.7.0.tar.bz2][6] [[asc][7]] [[sha256][8]] [[sha512][9]]
-* [apache-libcloud-2.7.0.zip][10] [[asc][11]] [[sha256][12]] [[sha512][13]]
+* [apache-libcloud-2.8.0.tar.gz][2] [[asc][3]] [[sha256][4]] [[sha512][5]]
+* [apache-libcloud-2.8.0.tar.bz2][6] [[asc][7]] [[sha256][8]] [[sha512][9]]
+* [apache-libcloud-2.8.0.zip][10] [[asc][11]] [[sha256][12]] [[sha512][13]]
 
 Upgrade notes: [Click][16]
 
@@ -161,37 +161,37 @@ is mentioned above.
 3.. Verify package with `.asc` signature file
 
 {% highlight bash %}
-gpg --verify apache-libcloud-2.7.0.tar.bz2.asc apache-libcloud-2.7.0.tar.bz2
+gpg --verify apache-libcloud-2.8.0.tar.bz2.asc apache-libcloud-2.8.0.tar.bz2
 gpg: Signature made Wed Oct  6 15:31:35 2010 CDT using DSA key ID 42721F00
 gpg: Good signature from "Paul Querna <...>"
 gpg:                 aka "Paul Querna <...>"
 gpg:                 ...</span>
 gpg: WARNING: This key is not certified with a trusted signature!
 gpg:          There is no indication that the signature belongs to the owner.
-Primary key fingerprint: 39F6 691A 0ECF 0C50 E8BB  849C F788 75F6 4272.7.00
+Primary key fingerprint: 39F6 691A 0ECF 0C50 E8BB  849C F788 75F6 4272.8.00
 {% endhighlight %}
 
 Example of a bad signature:
 
 {% highlight bash %}
-gpg --verify apache-libcloud-2.7.0.tar.bz2.asc
+gpg --verify apache-libcloud-2.8.0.tar.bz2.asc
 gpg: Signature made Wed Oct  6 15:31:35 2010 CDT using DSA key ID 42721F00
 gpg: BAD signature from "Paul Querna <...>"
 {% endhighlight %}
 
 [1]: {{ page.url }}
-[2]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.7.0.tar.gz
-[3]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.gz.asc
-[4]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.gz.sha256
-[5]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.gz.sha512
-[6]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.7.0.tar.bz2
-[7]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.bz2.asc
-[8]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.bz2.sha256
-[9]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.tar.bz2.sha512
-[10]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.7.0.zip
-[11]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.zip.asc
-[12]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.zip.sha256
-[13]: https://www.apache.org/dist/libcloud/apache-libcloud-2.7.0.zip.sha512
+[2]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.8.0.tar.gz
+[3]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.gz.asc
+[4]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.gz.sha256
+[5]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.gz.sha512
+[6]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.8.0.tar.bz2
+[7]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.bz2.asc
+[8]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.bz2.sha256
+[9]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.tar.bz2.sha512
+[10]: https://www.apache.org/dyn/closer.cgi/libcloud/apache-libcloud-2.8.0.zip
+[11]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.zip.asc
+[12]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.zip.sha256
+[13]: https://www.apache.org/dist/libcloud/apache-libcloud-2.8.0.zip.sha512
 [14]: https://www.apache.org/dist/libcloud/KEYS
 [15]: http://archive.apache.org/dist/libcloud/
 [16]: https://libcloud.readthedocs.org/en/stable/upgrade_notes.html

Modified: libcloud/site/trunk/source/index.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/index.html?rev=1872261&r1=1872260&r2=1872261&view=diff
==============================================================================
--- libcloud/site/trunk/source/index.html (original)
+++ libcloud/site/trunk/source/index.html Thu Jan  2 19:53:42 2020
@@ -81,7 +81,7 @@ javascript_files:
     <div class="row section row-2">
       <div class="col-md-6">
         <h3>Installation</h3>
-        <p>Latest stable version: <a href="https://pypi.python.org/pypi/apache-libcloud/2.6.1" target="_blank">2.6.1</a></p>
+        <p>Latest stable version: <a href="https://pypi.python.org/pypi/apache-libcloud/2.8.0" target="_blank">2.8.0</a> (January 02, 2020)</p>
         <p><code>pip install apache-libcloud</code></p>
         <p>Or <a href="downloads.html">download it from our servers</a> and install it manually.</p>
       </div>