From: Artem Bityutskiy Date: Mon, 18 Feb 2013 14:40:57 +0000 (+0200) Subject: Release version 2.1 X-Git-Tag: v2.1~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be7def5f380e94fc54307c124b5d2a6a1126ef69;p=tools%2Fbmap-tools.git Release version 2.1 Change-Id: Ib03595e0a404ec0a31efdf6a8aa84d49e656e78b Signed-off-by: Artem Bityutskiy --- diff --git a/bmaptool b/bmaptool index c631f9e..ead0aa1 100755 --- a/bmaptool +++ b/bmaptool @@ -32,7 +32,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 = "2.0" +VERSION = "2.1" import argparse import sys diff --git a/debian/changelog b/debian/changelog index 3130f33..a98033d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +bmap-tools (2.1-1) unstable; urgency=low + + * Fix out of memory issues when copying .bz2 files. + + -- Artem Bityutskiy Mon, 18 Feb 2013 16:38:32 +0200 + bmap-tools (2.0-1) unstable; urgency=low * Fix the an issue with running out of memory in TransRead.py. diff --git a/docs/RELEASE_NOTES b/docs/RELEASE_NOTES index 25f080e..66ec831 100644 --- a/docs/RELEASE_NOTES +++ b/docs/RELEASE_NOTES @@ -35,6 +35,9 @@ There are several user-visible changes in 'bmaptool copy': 'bmaptool create' has no changes comparing to release v1.0. +Bug-fix release 2.1: fixed the out of memory problem when copying .bz2 files. + + Release 1.0 ~~~~~~~~~~~ diff --git a/packaging/bmap-tools.changes b/packaging/bmap-tools.changes index ee0b735..8be74c3 100644 --- a/packaging/bmap-tools.changes +++ b/packaging/bmap-tools.changes @@ -1,3 +1,6 @@ +Mon Feb 18 14:39:11 UTC 2013 - Artem Bityutskiy 2.1-1 +- Fix out of memory issues when copying .bz2 files. + Thu Jan 17 09:34:00 UTC 2013 - Artem Bityutskiy 2.0-1 - Fix the an issue with running out of memory in TransRead.py. diff --git a/packaging/bmap-tools.dsc b/packaging/bmap-tools.dsc index 364217f..254e22a 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: 2.0-1 +Version: 2.1-1 Maintainer: Artem Bityutskiy Standards-Version: 3.8.4 Build-Depends: debhelper (>= 7), python-all, python-distribute diff --git a/setup.py b/setup.py index 9a2eb0d..a58b2a1 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 = "2.0", + version = "2.1", scripts = ['bmaptool'], packages = find_packages(exclude = [ "test*" ]), license='GPLv2',