Merge pull request #1738 from reaperhulk/deprecation-dance

Do the deprecation dance
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index ed68455..4c866f6 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
 Changelog
 =========
 
+0.9 - `master`_
+~~~~~~~~~~~~~~~
+
+.. note:: This version is not yet released and is under active development.
+
 0.8 - 2015-03-08
 ~~~~~~~~~~~~~~~~
 
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst
index 68b8529..d5e2751 100644
--- a/docs/development/test-vectors.rst
+++ b/docs/development/test-vectors.rst
@@ -233,7 +233,7 @@
 .. _`unenc-rsa-pkcs8.pem`: https://gitlab.com/gnutls/gnutls/blob/f8d943b38bf74eaaa11d396112daf43cb8aa82ae/tests/pkcs8-decode/unencpkcs8.pem
 .. _`pkcs12_s2k_pem.c`: https://gitlab.com/gnutls/gnutls/blob/f8d943b38bf74eaaa11d396112daf43cb8aa82ae/tests/pkcs12_s2k_pem.c
 .. _`Botan's ECC private keys`: https://github.com/randombit/botan/tree/4917f26a2b154e841cd27c1bcecdd41d2bdeb6ce/src/tests/data/ecc
-.. _`GnuTLS example keys`: https://gitorious.org/gnutls/gnutls/commit/ad2061deafdd7db78fd405f9d143b0a7c579da7b
+.. _`GnuTLS example keys`: https://gitlab.com/gnutls/gnutls/commit/ad2061deafdd7db78fd405f9d143b0a7c579da7b
 .. _`NESSIE IDEA vectors`: https://www.cosic.esat.kuleuven.be/nessie/testvectors/bc/idea/Idea-128-64.verified.test-vectors
 .. _`NESSIE`: https://en.wikipedia.org/wiki/NESSIE
 .. _`Ed25519 website`: http://ed25519.cr.yp.to/software.html
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst
index 85041c8..283b98b 100644
--- a/docs/doing-a-release.rst
+++ b/docs/doing-a-release.rst
@@ -16,7 +16,7 @@
 The next step in doing a release is bumping the version number in the
 software.
 
-* Update the version number in ``cryptography/__about__.py``.
+* Update the version number in ``src/cryptography/__about__.py``.
 * Update the version number in ``vectors/cryptography_vectors/__about__.py``.
 * Set the release date in the :doc:`/changelog`.
 * Do a commit indicating this.
diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py
index c760af7..0f8d487 100644
--- a/src/cryptography/__about__.py
+++ b/src/cryptography/__about__.py
@@ -14,7 +14,7 @@
                " and primitives to Python developers.")
 __uri__ = "https://github.com/pyca/cryptography"
 
-__version__ = "0.8"
+__version__ = "0.9.dev1"
 
 __author__ = "The cryptography developers"
 __email__ = "cryptography-dev@python.org"
diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py
index 9e3a243..189eb9f 100644
--- a/vectors/cryptography_vectors/__about__.py
+++ b/vectors/cryptography_vectors/__about__.py
@@ -14,7 +14,7 @@
 
 __uri__ = "https://github.com/pyca/cryptography"
 
-__version__ = "0.8"
+__version__ = "0.9.dev1"
 
 __author__ = "The cryptography developers"
 __email__ = "cryptography-dev@python.org"