Bump up version number
authorDonghoon Shin <dhs.shin@samsung.com>
Tue, 20 Sep 2016 23:57:00 +0000 (08:57 +0900)
committerDonghoon Shin <dhs.shin@samsung.com>
Tue, 20 Sep 2016 23:57:00 +0000 (08:57 +0900)
CHANGES.txt
README.md
debian/changelog
litmus/__init__.py

index a26d9b3a079f1140cfbabc81787e570d07f0ee92..d25eebd4445f85a359c5e4545c6ff6067f252e1a 100644 (file)
@@ -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
index 33668be6896aa5867ee9f18ace7d39663ce8e0f4..a58d58b02aa2ff138194c43d91ddcb1b3ee2fa14 100644 (file)
--- 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
index 5caf9eef47dd93f28fcc793833b1352a821803f0..c7a43e7e3eb2a698577db2ec1eecfd9a694aa5ce 100644 (file)
@@ -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 <dhs.shin@samsung.com>  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
index 8b9e108a146e52dd81869fc88aa1acf7518ebfd5..724e4752dcdb5647365c405341eff190312a6afb 100644 (file)
@@ -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')