summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pavement.py2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py
index 725980d69..e4833b3db 100644
--- a/pavement.py
+++ b/pavement.py
@@ -150,7 +150,7 @@ else:
# Start/end of the log (from git)
LOG_START = 'v1.5.0'
-LOG_END = 'v1.5.1rc1'
+LOG_END = 'v1.5.1'
RELEASE_NOTES = 'doc/release/1.5.1-notes.rst'
#-------------------
diff --git a/setup.py b/setup.py
index eb2c6f3a6..e2d0a59b0 100755
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,7 @@ MAJOR = 1
MINOR = 5
MICRO = 1
ISRELEASED = True
-VERSION = '%d.%d.%drc2' % (MAJOR, MINOR, MICRO)
+VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
# Return the svn version as a string, raise a ValueError otherwise
def svn_version():