From patchwork Thu Jul 21 17:01:32 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 3030 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id C258023F53 for ; Thu, 21 Jul 2011 17:01:40 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 9074FA18820 for ; Thu, 21 Jul 2011 17:01:40 +0000 (UTC) Received: by qyk30 with SMTP id 30so1029938qyk.11 for ; Thu, 21 Jul 2011 10:01:40 -0700 (PDT) Received: by 10.229.68.200 with SMTP id w8mr488009qci.114.1311267699961; Thu, 21 Jul 2011 10:01:39 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs145940qcb; Thu, 21 Jul 2011 10:01:39 -0700 (PDT) Received: by 10.216.171.132 with SMTP id r4mr396383wel.67.1311267698433; Thu, 21 Jul 2011 10:01:38 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id z54si2857812wec.132.2011.07.21.10.01.38; Thu, 21 Jul 2011 10:01:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qjwcy-0002AB-Hc for ; Thu, 21 Jul 2011 17:01:36 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 1E8BA2E8952 for ; Thu, 21 Jul 2011 17:01:32 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 80 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 80: Version 0.1.0 Message-Id: <20110721170132.16844.36826.launchpad@loganberry.canonical.com> Date: Thu, 21 Jul 2011 17:01:32 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13475"; Instance="initZopeless config overlay" X-Launchpad-Hash: 5f48f32b8436752ff78c70351a5050f240661fb7 ------------------------------------------------------------ revno: 80 tags: release-0.1.0, 2011.07 committer: Paul Larson 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 === 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",