Pre-release version 0.5
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Wed, 14 Nov 2012 10:38:08 +0000 (12:38 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 20 Nov 2012 15:46:13 +0000 (17:46 +0200)
Change-Id: I304827a5204fd3aa4c807f236ead82d1113a3e3d
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 505d524..7492c61 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.4"
+VERSION = "0.5"
 
 import argparse
 import sys
index 7907430..3399939 100644 (file)
@@ -1,3 +1,14 @@
+bmap-tools (0.5) unstable; urgency=low
+
+  * Fix handling of bmap files which contain ranges with only one block.
+  * Restore the block device settings which we change on exit.
+  * Change block device settings correctly for partitions.
+  * Rework API modules to accept file-like objects, not only paths.
+  * 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
+
 bmap-tools (0.4) unstable; urgency=low
 
   * Improved compressed images flashing speed by exploiting multiple threads:
index a0339ed..1c6442c 100644 (file)
@@ -1,3 +1,11 @@
+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.
+- Change block device settings correctly for partitions.
+- Rework API modules to accept file-like objects, not only paths.
+- Fix and silence pylint warnings.
+- Implement the base API test-case.
+
 Wed Nov 14 10:36:10 UTC 2012 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 0.4
 - Improved compressed images flashing speed by exploiting multiple threads:
   now we read/decompress the image in one thread and write it in a different
index 504d038..b8ab4ee 100644 (file)
@@ -2,7 +2,7 @@ Format: 1.0
 Source: bmap-tools
 Binary: bmap-tools
 Architecture: all
-Version: 0.4
+Version: 0.5
 Maintainer: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index 7784bc7..ec55c9d 100644 (file)
@@ -1,6 +1,6 @@
 Name:       bmap-tools
 Summary:    Bmap Tools
-Version:    0.4
+Version:    0.5
 Release:    1
 Group:      Development/Tools/Other
 License:    GPL-2.0
index 3251f0b..6a0bcb8 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.4",
+    version = "0.5",
     scripts = ['bmaptool'],
     packages = find_packages(),
     license='GPLv2',