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>
This commit is contained in:
Peter Portante 2012-12-07 16:34:14 -05:00
parent 7dfa6c5477
commit 8d4595a27a
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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