diff options
author | Peter Portante <peter.portante@redhat.com> | 2012-12-07 16:34:14 -0500 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-12-10 03:07:32 -0800 |
commit | c399ca2fe3b81e19b9ff7ddd3f8bebe41179be48 (patch) | |
tree | ac056c72d1e53b989daa71a5876b4bda84841229 /ufo | |
parent | 5e937c4ed16a7658628a3ce6e5d39832ec516bac (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.spec | 2 | ||||
-rw-r--r-- | ufo/gluster/swift/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ufo/gluster-swift-ufo.spec b/ufo/gluster-swift-ufo.spec index ce13517699d..8d2c93b8be3 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 17578ebee40..ef350fd5111 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 |