From 5cc8ea10affde659e708fc3944ff5df51bb8bdbe Mon Sep 17 00:00:00 2001
From: Chris Holdgraf <choldgraf@berkeley.edu>
Date: Tue, 28 Jul 2020 18:21:13 -0700
Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80RELEASE:=20v0.7.2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 RELEASES.md              | 29 +++++++++++++----------------
 jupyter_book/__init__.py |  2 +-
 2 files changed, 14 insertions(+), 17 deletions(-)

diff --git a/RELEASES.md b/RELEASES.md
index c9dc5d8c..a5ba0604 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -12,33 +12,30 @@ To create a new release, follow these steps:
 
 - Ensure that there aren't any extra issues to tackle in
    [the milestone for the next release](https://github.com/executablebooks/jupyter-book/milestones?direction=asc&sort=due_date)
-- Remove `dev0` from the Jupyter Book version in `__init__.py`
-- Create a "release commit":
+- Bump `__init__.py` to the version for the release. Use
+  [semantic versioning](https://semver.org/) to decide what version to choose.
+  For example:
 
   ```
-  git add jupyter_book
-  git commit -m "RLS: <version-number>"
-  git push upstream master
+  __version__ = "0.6.1"
   ```
-- [Create a new release](https://github.com/executablebooks/jupyter-book/releases/new) on GitHub.
-  The tag and title should be `v<version-number>`. For example, `v0.6.0`.
-- Bump `__init__.py` to the next dev version. Increment the minor version and add `dev0` to it. e.g.:
-
-  ```
-  __version__ = "0.6.1dev0"
-  ```
-- Commit and push to master
+- Create a "release commit":
 
   ```
   git add jupyter_book
-  git commit -m "Dev version bump"
+  git commit -m "🚀RELEASE: <version-number>"
   git push upstream master
   ```
-- Confirm that a new version of the package [is posted to pypi](https://pypi.org/project/jupyter-book/)
+- [Create a new release](https://github.com/executablebooks/jupyter-book/releases/new) on GitHub.
+  The tag and title should be `v<version-number>`. For example, `v0.6.1`.
+  - GitHub Actions will automatically deploy this release to PyPI using
+    [this configuration](https://github.com/executablebooks/jupyter-book/blob/master/.github/workflows/tests.yml#L86).
+  - Confirm that a new version of the package [is posted to pypi](https://pypi.org/project/jupyter-book/)
 - Add a changelog for the latest version by using `github-activity`:
 
   ```
   github-activity executablebooks/jupyter-book -s <old-version-tag> -u <new-version-tag>
   ```
 
-  and pasting the result into the release description on GitHub.
+  Paste the result into the release description on GitHub.
+- You're done! 🎉
diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py
index e97457e0..ec2e6ff3 100644
--- a/jupyter_book/__init__.py
+++ b/jupyter_book/__init__.py
@@ -5,7 +5,7 @@ from .toc import update_indexname, add_toctree
 from .directive.toc import TableofContents, SwapTableOfContents
 
 
-__version__ = "0.7.2dev0"
+__version__ = "0.7.2"
 
 
 def add_static_files(app, config):
-- 
GitLab