From: Artem Bityutskiy Date: Tue, 15 Jan 2013 12:53:16 +0000 (+0200) Subject: Pre-release version 2.0-rc5 X-Git-Tag: v2.0~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7650f0ee91385545766a6eb3b494438d9045654;p=tools%2Fbmap-tools.git Pre-release version 2.0-rc5 Change-Id: Iad8b4cadbcc294d15bb756ab7dc7e1afbf1b8110 Signed-off-by: Artem Bityutskiy --- diff --git a/RELEASE_NOTES b/RELEASE_NOTES index a3b5f86..766cf85 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,4 +1,4 @@ -Pre-release 2.0-rc4 +Pre-release 2.0-rc5 ~~~~~~~~~~~~~~~~~~~ There are several user-visible changes in 'bmaptool copy': diff --git a/bmaptool b/bmaptool index b1a5b76..61a6dd5 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-rc4" +VERSION = "2.0-rc5" import argparse import sys diff --git a/debian/changelog b/debian/changelog index 48b8b51..7f7834d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +bmap-tools (2.0-0.rc5) unstable; urgency=low + + * When block device optimzations fail - raise an exception except of muting + the error, because we really want to know about these failures and possibly + fix them. + + -- Artem Bityutskiy Tue, 15 Jan 2013 14:51:27 +0200 + bmap-tools (2.0-0.rc4) unstable; urgency=low * Fix bmap autodiscovery. diff --git a/packaging/bmap-tools.changes b/packaging/bmap-tools.changes index c881f8f..c604528 100644 --- a/packaging/bmap-tools.changes +++ b/packaging/bmap-tools.changes @@ -1,3 +1,8 @@ +Tue Jan 15 12:52:25 UTC 2013 - Artem Bityutskiy 2.0-0.rc5 +- When block device optimzations fail - raise an exception except of muting + the error, because we really want to know about these failures and possibly + fix them. + Thu Jan 10 11:58:57 UTC 2013 - Artem Bityutskiy 2.0-0.rc4 - Fix bmap autodiscovery. diff --git a/packaging/bmap-tools.dsc b/packaging/bmap-tools.dsc index b8ea6e6..0e7241d 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-0.rc4 +Version: 2.0-0.rc5 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 7e9c74d..21fb9c7 100644 --- a/packaging/bmap-tools.spec +++ b/packaging/bmap-tools.spec @@ -1,6 +1,6 @@ # We follow the Fedora guide for versioning. Fedora recommends to use something # like '1.0-0.rc7' for release candidate rc7 and '1.0-1' for the '1.0' release. -%define rc_num 4 +%define rc_num 5 %define rc_str %{?rc_num:0.rc%{rc_num}}%{!?rc_num:1} Name: bmap-tools diff --git a/setup.py b/setup.py index f028c1c..e2bae57 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-rc4", + version = "2.0-rc5", scripts = ['bmaptool'], packages = find_packages(exclude = [ "test*" ]), license='GPLv2',