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 07991c5ac..f0fead3bd 100644
--- a/pavement.py
+++ b/pavement.py
@@ -102,7 +102,7 @@ finally:
RELEASE_NOTES = 'doc/release/1.13.0-notes.rst'
# Start/end of the log (from git)
-LOG_START = 'maintenance/1.12.x'
+LOG_START = 'v1.13.0'
LOG_END = 'maintenance/1.13.x'
diff --git a/setup.py b/setup.py
index ed8b457bf..f0e8fd31d 100755
--- a/setup.py
+++ b/setup.py
@@ -63,8 +63,8 @@ Operating System :: MacOS
MAJOR = 1
MINOR = 13
-MICRO = 0
-ISRELEASED = False
+MICRO = 1
+ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)