From: Donghoon Shin Date: Tue, 20 Sep 2016 23:57:00 +0000 (+0900) Subject: Bump up version number X-Git-Tag: 0.3.3~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1701cc618d2b2f4f00ed5172806ccfb046fc266f;p=tools%2Flitmus.git Bump up version number --- diff --git a/CHANGES.txt b/CHANGES.txt index a26d9b3..d25eebd 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -24,3 +24,8 @@ Version 0.2.1 9 Sep 2016 - Update import command to use shell-like path expansions - Update mock device type to avoid sdb error - Update default templates for u3 and xu3 + +Version 0.3.0 19 Sep 2016 +--------------------------- +- Update projects/topology file location +- Add projects/topology param at command prompt diff --git a/README.md b/README.md index 33668be..a58d58b 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,19 @@ Litmus is an automated testing tool for tizen arm devices. Buliding & installing --------------------- +1. Change directory name with version postfix and create an orig.tar.gz + + $ mv litmus litmus-0.3.0 + $ tar cvfz litmus-0.3.0.orig.tar.gz litmus-0.3.0 + 1. Build a deb package with debuild + $ cd litmus-0.3.0 + $ debuild + 2. Install the deb package using dpkg - $ sudo dpkg -i litmus_0.2.1-1_amd64.deb + $ sudo dpkg -i litmus_0.3.0-1_amd64.deb Getting started diff --git a/debian/changelog b/debian/changelog index 5caf9ee..c7a43e7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +litmus (0.3.0-1) unstable; urgency=low + + * Update projects/topology file location + * Add projects/topology param at command prompt + + -- Donghoon Shin Mon, 19 Sep 2016 12:39:00 +0900 + litmus (0.2.1-1) unstable; urgency=low * Update import command to use shell-like path expansions diff --git a/litmus/__init__.py b/litmus/__init__.py index 8b9e108..724e475 100644 --- a/litmus/__init__.py +++ b/litmus/__init__.py @@ -14,7 +14,7 @@ # limitations under the License. import os -__version__ = '0.2.1' +__version__ = '0.3.0' _homedir_ = os.path.expanduser('~') _confdir_ = os.path.join(_homedir_, '.litmus') _duts_ = os.path.join(_confdir_, 'topology')