Skip to content

Commit

Permalink
REL: NumPy 1.12.1rc1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Mar 6, 2017
1 parent d3b9d19 commit 61e667e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pavement.py
Expand Up @@ -99,10 +99,10 @@
#-----------------------------------

# Source of the release notes
RELEASE_NOTES = 'doc/release/1.12.0-notes.rst'
RELEASE_NOTES = 'doc/release/1.12.1-notes.rst'

# Start/end of the log (from git)
LOG_START = 'maintenance/1.11.x'
LOG_START = 'v1.12.0'
LOG_END = 'maintenance/1.12.x'


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -63,9 +63,9 @@

MAJOR = 1
MINOR = 12
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
MICRO = 1
ISRELEASED = True
VERSION = '%d.%d.%drc1' % (MAJOR, MINOR, MICRO)


# Return the git revision as a string
Expand Down

0 comments on commit 61e667e

Please sign in to comment.