From: Artem Bityutskiy Date: Wed, 14 Nov 2012 10:38:08 +0000 (+0200) Subject: Pre-release version 0.5 X-Git-Tag: v1.0~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b1564541217a6f0c7eb88753ca494a6eb83b2a4;p=tools%2Fbmap-tools.git Pre-release version 0.5 Change-Id: I304827a5204fd3aa4c807f236ead82d1113a3e3d Signed-off-by: Artem Bityutskiy --- diff --git a/bmaptool b/bmaptool index 505d524..7492c61 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.4" +VERSION = "0.5" import argparse import sys diff --git a/debian/changelog b/debian/changelog index 7907430..3399939 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Wed, 14 Nov 2012 12:35:06 +0200 + bmap-tools (0.4) unstable; urgency=low * Improved compressed images flashing speed by exploiting multiple threads: diff --git a/packaging/bmap-tools.changes b/packaging/bmap-tools.changes index a0339ed..1c6442c 100644 --- a/packaging/bmap-tools.changes +++ b/packaging/bmap-tools.changes @@ -1,3 +1,11 @@ +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. +- 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 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 diff --git a/packaging/bmap-tools.dsc b/packaging/bmap-tools.dsc index 504d038..b8ab4ee 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.4 +Version: 0.5 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 7784bc7..ec55c9d 100644 --- a/packaging/bmap-tools.spec +++ b/packaging/bmap-tools.spec @@ -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 diff --git a/setup.py b/setup.py index 3251f0b..6a0bcb8 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.4", + version = "0.5", scripts = ['bmaptool'], packages = find_packages(), license='GPLv2',