summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pavement.py2
-rwxr-xr-xsetup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/pavement.py b/pavement.py
index ca5a44599..6d1920fa9 100644
--- a/pavement.py
+++ b/pavement.py
@@ -102,7 +102,7 @@ RELEASE_NOTES = 'doc/release/1.7.0-notes.rst'
# Start/end of the log (from git)
LOG_START = 'v1.6.0'
-LOG_END = 'master'
+LOG_END = 'maintenance/1.7.x'
#-------------------------------------------------------
diff --git a/setup.py b/setup.py
index ff38ca5ac..dacea9857 100755
--- a/setup.py
+++ b/setup.py
@@ -57,8 +57,8 @@ PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR = 1
MINOR = 7
MICRO = 0
-ISRELEASED = False
-VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
+ISRELEASED = True
+VERSION = '%d.%d.%db1' % (MAJOR, MINOR, MICRO)
# Return the git revision as a string
def git_version():