summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 917df4f9c..daab65d14 100644
--- a/pavement.py
+++ b/pavement.py
@@ -98,10 +98,10 @@ finally:
#-----------------------------------
# Source of the release notes
-RELEASE_NOTES = 'doc/release/1.7.1-notes.rst'
+RELEASE_NOTES = 'doc/release/1.7.2-notes.rst'
# Start/end of the log (from git)
-LOG_START = 'v1.7.0'
+LOG_START = 'v1.7.1'
LOG_END = 'maintenance/1.7.x'
diff --git a/setup.py b/setup.py
index 7a020bfd7..dc5b3b453 100755
--- a/setup.py
+++ b/setup.py
@@ -57,8 +57,8 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR = 1
MINOR = 7
MICRO = 2
-ISRELEASED = False
-VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
+ISRELEASED = True
+VERSION = '%d.%d.%drc1' % (MAJOR, MINOR, MICRO)
# Return the git revision as a string
def git_version():