diff --git a/DEPLOY.md b/DEPLOY.md index 69d1c5c3..5f543e73 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -25,9 +25,10 @@ The release cycle should be performed like this: git rev-parse HEAD GIT_REVISION = -3. Add `setup.py` to the commit: +3. Commit changes: - git commit [-s] -m "Inelastica release: [VERSION]" + git add setup.py + git commit -m "Release [VERSION]" with the corresponding version number. diff --git a/setup.py b/setup.py index 51b5b690..b10636db 100644 --- a/setup.py +++ b/setup.py @@ -87,10 +87,10 @@ def git_version(): # Default release info MAJOR = 1 MINOR = 3 - MICRO = 2 + MICRO = 3 VERSION = [MAJOR, MINOR, MICRO] - # Git revision - GIT_REVISION = "81934f329358ef28baeaa46f231532bc6696e986" + # Git revision prior to release: + GIT_REVISION = "182656f480955c08539208bec4227c1fc67993ba" GIT_LABEL = '.'.join(map(str, [MAJOR, MINOR, MICRO])) def _minimal_ext_cmd(cmd):