summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-10-19 14:45:55 +0300
committerHugo <hugovk@users.noreply.github.com>2019-10-19 14:45:55 +0300
commit1726c1cf37ae5a4f08c5b731f5523f3f6b6d4216 (patch)
treea3478916d216a74115c33b25af7ba5ac29d31380
parent0e022d89e5b27c60dd7a8f7f9746515c21483606 (diff)
downloadtablib-1726c1cf37ae5a4f08c5b731f5523f3f6b6d4216.tar.gz
Add release checklist
-rw-r--r--RELEASING.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/RELEASING.md b/RELEASING.md
new file mode 100644
index 0000000..222abca
--- /dev/null
+++ b/RELEASING.md
@@ -0,0 +1,29 @@
+# Release checklist
+
+Jazzband guidelines: https://jazzband.co/about/releases
+
+* [ ] Get master to the appropriate code release state.
+ [Travis CI](https://travis-ci.org/jazzband/tablib)
+ should pass on master.
+ [![Build Status](https://travis-ci.org/jazzband/tablib.svg?branch=master)](https://travis-ci.org/jazzband/tablib)
+
+* [ ] Check [HISTORY.md](https://github.com/jazzband/tablib/blob/master/HISTORY.md),
+ update version number and release date
+
+* [ ] Tag with version number and push tag, for example:
+```bash
+git tag -a v0.14.0 -m v0.14.0
+git push --tags
+```
+
+* [ ] Once Travis CI has built and uploaded distributions, check files at
+ [Jazzband](https://jazzband.co/projects/tablib) and release to
+ [PyPI](https://pypi.org/pypi/tablib)
+
+* [ ] Check installation:
+```bash
+pip uninstall -y tablib && pip install -U tablib
+```
+
+* [ ] Create new GitHub release: https://github.com/jazzband/tablib/releases/new
+ * Tag: Pick existing tag "v0.14.0"