summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Certik <ondrej.certik@gmail.com>2013-03-24 18:47:59 +0000
committervagrant <vagrant@precise32.(none)>2013-03-24 18:59:19 +0000
commit21bda0e23c6d2e02776e00268bcfee71740f3580 (patch)
tree43e487c9e1e4b3191e6f4ff732d790ef93b2aedf
parent9f829ac99e490539fcd24c318915dabd740a0a06 (diff)
downloadnumpy-1.7.1rc1.tar.gz
REL: Release 1.7.1rc1v1.7.1rc1
-rw-r--r--pavement.py4
-rwxr-xr-xsetup.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/pavement.py b/pavement.py
index e693016f2..917df4f9c 100644
--- a/pavement.py
+++ b/pavement.py
@@ -98,10 +98,10 @@ finally:
#-----------------------------------
# Source of the release notes
-RELEASE_NOTES = 'doc/release/1.7.0-notes.rst'
+RELEASE_NOTES = 'doc/release/1.7.1-notes.rst'
# Start/end of the log (from git)
-LOG_START = 'v1.6.0'
+LOG_START = 'v1.7.0'
LOG_END = 'maintenance/1.7.x'
diff --git a/setup.py b/setup.py
index 4f4fb5722..4be9127a0 100755
--- a/setup.py
+++ b/setup.py
@@ -56,9 +56,9 @@ AUTHOR_EMAIL = "numpy-discussion@scipy.org"
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR = 1
MINOR = 7
-MICRO = 0
+MICRO = 1
ISRELEASED = True
-VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
+VERSION = '%d.%d.%drc1' % (MAJOR, MINOR, MICRO)
# Return the git revision as a string
def git_version():