Pre-release version 0.6
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Wed, 14 Nov 2012 10:38:08 +0000 (12:38 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Wed, 21 Nov 2012 14:47:35 +0000 (16:47 +0200)
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 <artem.bityutskiy@intel.com>
bmaptool
debian/changelog
packaging/bmap-tools.changes
packaging/bmap-tools.dsc
packaging/bmap-tools.spec
setup.py

index 7492c61..08e5162 100755 (executable)
--- 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
index 3399939..348f32f 100644 (file)
@@ -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 <artem.bityutskiy@linux.intel.com>  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 <artem.bityutskiy@linux.intel.com>  Wed, 14 Nov 2012 12:35:06 +0200
+ -- Artem Bityutskiy <artem.bityutskiy@linux.intel.com>  Tue, 20 Nov 2012 15:40:30 +0200
 
 bmap-tools (0.4) unstable; urgency=low
 
index 1c6442c..ddb3b2c 100644 (file)
@@ -1,3 +1,7 @@
+Wed Nov 21 14:45:48 UTC 2012 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 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 <artem.bityutskiy@linux.intel.com> 0.5
 - Fix handling of bmap files which contain ranges with only one block.
 - Restore the block device settings which we change on exit.
index b8ab4ee..c26b2cc 100644 (file)
@@ -2,7 +2,7 @@ Format: 1.0
 Source: bmap-tools
 Binary: bmap-tools
 Architecture: all
-Version: 0.5
+Version: 0.6
 Maintainer: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index ec55c9d..a3bcf4c 100644 (file)
@@ -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
index 6a0bcb8..a4c4ba1 100644 (file)
--- 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',