From: Artem Bityutskiy Date: Wed, 14 Nov 2012 10:38:08 +0000 (+0200) Subject: Pre-release version 0.6 X-Git-Tag: v1.0~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83b5643d099941a103f038ea6a4cb26953954fe0;p=tools%2Fbmap-tools.git Pre-release version 0.6 Also change the date in the debian changelog for the 0.5 release - I forgot to update it. Change-Id: Ie69aba677b2812b7405327c32142583cad610856 Signed-off-by: Artem Bityutskiy --- diff --git a/bmaptool b/bmaptool index 7492c61..08e5162 100755 --- a/bmaptool +++ b/bmaptool @@ -33,7 +33,7 @@ all 4GiB of data. We say that it is a bit more than 100MiB because things like file-system meta-data (inode tables, superblocks, etc), partition table, etc also contribute to the mapped blocks and are also copied. """ -VERSION = "0.5" +VERSION = "0.6" import argparse import sys diff --git a/debian/changelog b/debian/changelog index 3399939..348f32f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bmap-tools (0.6) unstable; urgency=low + + * Improve the base API test to cover the case when there is no bmap. + * Fix a bug when copying without bmap. + + -- Artem Bityutskiy Wed, 21 Nov 2012 16:43:49 +0200 + bmap-tools (0.5) unstable; urgency=low * Fix handling of bmap files which contain ranges with only one block. @@ -7,7 +14,7 @@ bmap-tools (0.5) unstable; urgency=low * Fix and silence pylint warnings. * Implement the base API test-case. - -- Artem Bityutskiy Wed, 14 Nov 2012 12:35:06 +0200 + -- Artem Bityutskiy Tue, 20 Nov 2012 15:40:30 +0200 bmap-tools (0.4) unstable; urgency=low diff --git a/packaging/bmap-tools.changes b/packaging/bmap-tools.changes index 1c6442c..ddb3b2c 100644 --- a/packaging/bmap-tools.changes +++ b/packaging/bmap-tools.changes @@ -1,3 +1,7 @@ +Wed Nov 21 14:45:48 UTC 2012 - Artem Bityutskiy 0.6 +- Improve the base API test to cover the case when there is no bmap. +- Fix a bug when copying without bmap. + Tue Nov 20 15:40:30 UTC 2012 - Artem Bityutskiy 0.5 - Fix handling of bmap files which contain ranges with only one block. - Restore the block device settings which we change on exit. diff --git a/packaging/bmap-tools.dsc b/packaging/bmap-tools.dsc index b8ab4ee..c26b2cc 100644 --- a/packaging/bmap-tools.dsc +++ b/packaging/bmap-tools.dsc @@ -2,7 +2,7 @@ Format: 1.0 Source: bmap-tools Binary: bmap-tools Architecture: all -Version: 0.5 +Version: 0.6 Maintainer: Artem Bityutskiy Standards-Version: 3.8.4 Build-Depends: debhelper (>= 7), python-all, python-distribute diff --git a/packaging/bmap-tools.spec b/packaging/bmap-tools.spec index ec55c9d..a3bcf4c 100644 --- a/packaging/bmap-tools.spec +++ b/packaging/bmap-tools.spec @@ -1,6 +1,6 @@ Name: bmap-tools Summary: Bmap Tools -Version: 0.5 +Version: 0.6 Release: 1 Group: Development/Tools/Other License: GPL-2.0 diff --git a/setup.py b/setup.py index 6a0bcb8..a4c4ba1 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( description = "Bmap tools", author = "Artem Bityutskiy", author_email = "artem.bityutskiy@linux.intel.com", - version = "0.5", + version = "0.6", scripts = ['bmaptool'], packages = find_packages(), license='GPLv2',