aboutsummaryrefslogtreecommitdiffstats
path: root/docs/doing-a-release.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-24 19:25:02 -0430
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-24 19:25:02 -0430
commit8573916ba3ea3b403f51ec4de4051db09fa91cda (patch)
treea56661e8b5df1377e9a59c6a72a70e12fef97e57 /docs/doing-a-release.rst
parenteb98d47b925071acb3f0b1df6146a533525520fc (diff)
parent3888a84c2b7fc45adf3fa665880d554c1766165e (diff)
downloadcryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.tar.gz
cryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.tar.bz2
cryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.zip
Merge pull request #795 from public/split-vectors
Split vectors into cryptography_vectors
Diffstat (limited to 'docs/doing-a-release.rst')
-rw-r--r--docs/doing-a-release.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst
index 8b37df78..fc88a91c 100644
--- a/docs/doing-a-release.rst
+++ b/docs/doing-a-release.rst
@@ -10,6 +10,7 @@ The first 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 ``vectors/cryptography_vectors/__about__.py``.
* Set the release date in the :doc:`/changelog`.
* Do a commit indicating this.
* Send a pull request with this.
@@ -33,5 +34,8 @@ correctly:
>>> import cryptography
>>> cryptography.__version__
'...'
+ >>> import cryptography_vectors
+ >>> cryptography_vectors.__version__
+ '...'
Verify that this is the version you just released.