summaryrefslogtreecommitdiffstats
path: root/ufo
diff options
context:
space:
mode:
authorPeter Portante <peter.portante@redhat.com>2012-12-07 16:34:14 -0500
committerPeter Portante <peter.portante@redhat.com>2013-04-29 16:35:56 -0400
commit8d4595a27a2c33e1fd3442b4a8bed76334a8ab99 (patch)
tree6e7ddad3945dc7123f9a89cccd8a7cdc29298e9f /ufo
parent7dfa6c54778bae6c935662ad15202a9d2026dcb3 (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>
Diffstat (limited to 'ufo')
-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 ce13517..8d2c93b 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 17578eb..ef350fd 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