summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Portante <peter.portante@redhat.com>2012-12-07 16:34:14 -0500
committerVijay Bellur <vbellur@redhat.com>2012-12-10 03:07:32 -0800
commitc399ca2fe3b81e19b9ff7ddd3f8bebe41179be48 (patch)
treeac056c72d1e53b989daa71a5876b4bda84841229
parent5e937c4ed16a7658628a3ce6e5d39832ec516bac (diff)
object-storage: Use "-dev" in the version string
Currently, we have not solved the account mapping story entirely (we don't have a way to support more than one account to gluster volume in the mapping). As such, do not declare this as the final version. Also update the default RHS 2.0 spec file to "-3" for the release number to refer to the fact that we now have a working account mapping (see http://review.gluster.org/4222). Change-Id: Ia1cd0d18c1d7a7b20f732cc0ff867fecda30a7af BUG: 870589 Signed-off-by: Peter Portante <peter.portante@redhat.com> Reviewed-on: http://review.gluster.org/4283 Reviewed-by: Mohammed Junaid <junaid@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
-rw-r--r--ufo/gluster-swift-ufo.spec2
-rw-r--r--ufo/gluster/swift/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ufo/gluster-swift-ufo.spec b/ufo/gluster-swift-ufo.spec
index ce1351769..8d2c93b8b 100644
--- a/ufo/gluster-swift-ufo.spec
+++ b/ufo/gluster-swift-ufo.spec
@@ -16,7 +16,7 @@
%define _confdir %{_sysconfdir}/swift
%define _ufo_version 1.1
-%define _ufo_release 2
+%define _ufo_release 3
Summary : GlusterFS Unified File and Object Storage.
Name : gluster-swift-ufo
diff --git a/ufo/gluster/swift/__init__.py b/ufo/gluster/swift/__init__.py
index 17578ebee..ef350fd51 100644
--- a/ufo/gluster/swift/__init__.py
+++ b/ufo/gluster/swift/__init__.py
@@ -13,6 +13,6 @@ class Version(object):
return '%s-dev' % (self.canonical_version,)
-_version = Version('1.1', True)
+_version = Version('1.1', False)
__version__ = _version.pretty_version
__canonical_version__ = _version.canonical_version