From 51e320670ce9ce0c5a8120b0ea136cf6d447bba9 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 12 Jun 2012 23:06:35 +0200 Subject: [PATCH] REL: set version to 0.11.0b1. --- pavement.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pavement.py b/pavement.py index 9c347c8f0308..804a23c9e292 100644 --- a/pavement.py +++ b/pavement.py @@ -116,7 +116,7 @@ # Start/end of the log (from git) LOG_START = 'v0.10.0' -LOG_END = 'master' +LOG_END = 'v0.11.0b1' #------------------------------------------------------- diff --git a/setup.py b/setup.py index ab09f93285f9..e410dd3fe63e 100755 --- a/setup.py +++ b/setup.py @@ -48,8 +48,8 @@ MAJOR = 0 MINOR = 11 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