diff options
Diffstat (limited to 'docs/doing-a-release.rst')
-rw-r--r-- | docs/doing-a-release.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst index 15583afb..fc88a91c 100644 --- a/docs/doing-a-release.rst +++ b/docs/doing-a-release.rst @@ -1,4 +1,4 @@ -Doing a Release +Doing a release =============== Doing a release of ``cryptography`` is a two part process. @@ -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. |