]> git.jsancho.org Git - datasette-pytables.git/blobdiff - RELEASING.md
RELEASING.md update
[datasette-pytables.git] / RELEASING.md
index c4b8079054162174594836579f7dce4c6e0cc9fd..64df5edb39803dd3bab74ee7b1802da03f752c04 100644 (file)
@@ -7,6 +7,8 @@ Date: 2018-06-01
 
 ## Preliminaries
 
 
 ## Preliminaries
 
+* Update the version number at ``VERSION`` and ``ANNOUNCE.md``.
+
 * Make sure that ``RELEASE_NOTES.md`` and ``ANNOUNCE.md`` are up to
   date with the latest news in the release.
 
 * Make sure that ``RELEASE_NOTES.md`` and ``ANNOUNCE.md`` are up to
   date with the latest news in the release.
 
@@ -21,18 +23,18 @@ Date: 2018-06-01
 
 ## Tagging
 
 
 ## Tagging
 
-* Create a tag ``X.Y.Z`` from ``master``.  Use the next message:
+* Create a tag ``vX.Y.Z`` from ``master``.  Use the next message:
 
 ```
 
 ```
-    $ git tag -a X.Y.Z -m "Tagging version X.Y.Z"
+    $ git tag -a vX.Y.Z -m "Tagging version X.Y.Z"
 ```
 
 ```
 
-  Note: For release candidates, just add a rcN suffix to tag ("X.Y.ZrcN").
+  Note: For release candidates, just add a rcN suffix to tag ("vX.Y.ZrcN").
 
 * Or, alternatively, make a signed tag (requires gpg correctly configured):
 
 ```
 
 * Or, alternatively, make a signed tag (requires gpg correctly configured):
 
 ```
-    $ git tag -s X.Y.Z -m "Tagging version X.Y.Z"
+    $ git tag -s vX.Y.Z -m "Tagging version X.Y.Z"
 ```
 
 * Push the tag to the Github repo:
 ```
 
 * Push the tag to the Github repo:
@@ -62,6 +64,7 @@ Date: 2018-06-01
   $ git clone https://github.com/PyTables/datasette-pytables
   $ cd datasette-pytables
   $ python setup.py build
   $ git clone https://github.com/PyTables/datasette-pytables
   $ cd datasette-pytables
   $ python setup.py build
+  $ pytest
 ```
 
 * Make the tarball with the command:
 ```
 
 * Make the tarball with the command: