Skip to content

Commit

Permalink
setting version to 0.2.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
glyg committed Apr 21, 2017
1 parent 57c6bab commit f52d528
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
## Version management copied form numpy
## Thanks to them!
MAJOR = 0
MINOR = 0
MICRO = 2
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
MINOR = 2
MICRO = 'rc1'
ISRELEASED = True
VERSION = '%d.%d.%s' % (MAJOR, MINOR, MICRO)


def git_version():
Expand Down

0 comments on commit f52d528

Please sign in to comment.