Increase Fuel-Web projects' versions

We need to increase Fuel projects' versions at least once per release,
because that will help us to track problems in multi-releases
environments and prevent us from some bugs (like the nailgun of same
version are available in few repos).

The patch should be merged at once with next one:

    https://review.openstack.org/#/c/137555/
    https://review.openstack.org/#/c/137566/
    https://review.openstack.org/#/c/137563/

Change-Id: I7ba73ce63a9fb228ef8c8b40f5feda5a32150a3c
Closes-Bug: #1395279
This commit is contained in:
Igor Kalnitsky 2014-11-27 11:44:02 +02:00
parent c25bfbe204
commit f60f39c7b9
No known key found for this signature in database
GPG Key ID: 38306881ADFE39E4
9 changed files with 9 additions and 19 deletions

View File

@ -1,6 +1,6 @@
[metadata]
name = fuel-agent
version = 0.1.0
version = 6.0.0
author = Mirantis
author-email = fuel-dev@lists.launchpad.net
summary = Fuel agent

View File

@ -1,6 +1,6 @@
[metadata]
name = fuel-agent-ci
version = 0.1.0
version = 6.0.0
author = Mirantis
author-email = fuel-dev@lists.launchpad.net
summary = Fuel agent

View File

@ -17,7 +17,7 @@ from setuptools import setup
setup(
name='fuelclient',
version='0.2',
version='6.0.0',
description='Command line interface for Nailgun',
long_description="""Command line interface for Nailgun""",
author='Mirantis Inc.',

View File

@ -18,7 +18,7 @@ import setuptools
setuptools.setup(
name="fuelmenu",
version='0.1',
version='6.0.0',
description="Console util for pre-configuration of Fuel server",
author="Matthew Mosesohn",
author_email="mmosesohn@mirantis.com",

View File

@ -5,7 +5,6 @@ MarkupSafe==0.18
Paste==1.7.5.1
PyYAML==3.10
SQLAlchemy>=0.9.4
Shotgun==0.1.0
alembic>=0.6.2
amqplib==1.0.2
anyjson==0.3.3

View File

@ -18,11 +18,8 @@ import os.path
from setuptools import find_packages
from setuptools import setup
major_version = '0.1'
minor_version = '0'
name = 'nailgun'
version = "%s.%s" % (major_version, minor_version)
version = '6.0.0'
def find_requires():

View File

@ -17,7 +17,7 @@ import setuptools
setuptools.setup(
name="nailgun-net-check",
version='0.2',
version='6.0.0',
author="Mirantis Inc",
classifiers=[
"License :: OSI Approved :: Apache 2.0",

View File

@ -22,11 +22,8 @@ requires = [
'Fabric==1.7.0'
]
major_version = '0.1'
minor_version = '0'
name = 'Shotgun'
version = "%s.%s" % (major_version, minor_version)
name = 'shotgun'
version = '6.0.0'
def recursive_data_files(spec_data_files):

View File

@ -24,11 +24,8 @@ def requirements():
return requirements
major_version = '0.1'
minor_version = '0'
name = 'tasklib'
version = "%s.%s" % (major_version, minor_version)
version = '6.0.0'
setuptools.setup(