diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 80: Version 0.1.0

Message ID 20110721170132.16844.36826.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Paul Larson July 21, 2011, 5:01 p.m. UTC
------------------------------------------------------------
revno: 80
tags: release-0.1.0, 2011.07
committer: Paul Larson <paul.larson@canonical.com>
branch nick: lava-dispatcher
timestamp: Thu 2011-07-21 11:55:47 -0500
message:
  Version 0.1.0
modified:
  lava_dispatcher/__init__.py
  setup.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/__init__.py'
--- lava_dispatcher/__init__.py	2011-07-20 07:30:07 +0000
+++ lava_dispatcher/__init__.py	2011-07-21 16:55:47 +0000
@@ -30,6 +30,8 @@ 
 from lava_dispatcher.client import LavaClient, CriticalError, GeneralError
 from lava_dispatcher.android_client import LavaAndroidClient
 
+__version__ = "0.1.0"
+
 class LavaTestJob(object):
     def __init__(self, job_json):
         self.job_status = 'pass'

=== modified file 'setup.py'
--- setup.py	2011-06-23 18:28:42 +0000
+++ setup.py	2011-07-21 16:55:47 +0000
@@ -1,10 +1,11 @@ 
 #!/usr/bin/env python
 
 from setuptools import setup, find_packages
+from lava_dispatcher import __version__ as version
 
 setup(
     name="lava-dispatcher",
-    version="2011.06",
+    version=version,
     url='https://launchpad.net/lava-dispatcher',
     license='GPL v2 or later',
     description="Part of the LAVA framework for dispatching test jobs",