Skip to content

Commit

Permalink
Release v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrederiksen committed Mar 14, 2018
1 parent 182656f commit 452c3a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions DEPLOY.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ The release cycle should be performed like this:
git rev-parse HEAD
GIT_REVISION = <git rev-parse HEAD>

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.

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 452c3a6

Please sign in to comment.