From 203eaf4179a4eefbbb9c4799dff6dffb4d823b30 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 16 Mar 2011 16:35:34 -0500 Subject: [PATCH] Call this 2.0a1 instead of 2.0. --- docs/conf.py | 2 +- openstack/compute/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 84679cf..0b4b843 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,7 @@ # The short X.Y version. version = '2.0' # The full version, including alpha/beta/rc tags. -release = '2.0' +release = '2.0a1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/openstack/compute/__init__.py b/openstack/compute/__init__.py index a25f24a..5f52b68 100644 --- a/openstack/compute/__init__.py +++ b/openstack/compute/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.0' +__version__ = '2.0a1' from openstack.compute.backup_schedules import (BackupSchedule, BackupScheduleManager, BACKUP_WEEKLY_DISABLED, BACKUP_WEEKLY_SUNDAY, BACKUP_WEEKLY_MONDAY, diff --git a/setup.py b/setup.py index 98b58bf..5784a3e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(fname): setup( name = "openstack.compute", - version = "2.0", + version = "2.0a1", description = "Client library for the OpenStack Compute API", long_description = read('README.rst'), url = 'http://openstack.compute.rtfd.org/',