From: Artem Bityutskiy Date: Fri, 4 Jan 2013 07:57:54 +0000 (+0200) Subject: Pre-release 2.0-rc2 X-Git-Tag: v2.0~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07738da0f7d63f5e651e1ecf0ae8c19f8025df4f;p=tools%2Fbmap-tools.git Pre-release 2.0-rc2 Change-Id: I43508315224221e42dbf149dd026b0636b17358e Signed-off-by: Artem Bityutskiy --- diff --git a/RELEASE_NOTES b/RELEASE_NOTES index c6050c9..9a19419 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,4 +1,4 @@ -Pre-release 2.0-rc1 +Pre-release 2.0-rc2 ~~~~~~~~~~~~~~~~~~~ There are several user-visible changes in 'bmaptool copy': diff --git a/bmaptool b/bmaptool index cdf380e..fc11103 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-rc1" +VERSION = "2.0-rc2" import argparse import sys diff --git a/debian/changelog b/debian/changelog index d7966ba..7a32ba8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bmap-tools (2.0-0.rc2) unstable; urgency=low + + * Fix writing to block devices, which was broken in rc1. + * Make the informational messages a bit nicer. + + -- Artem Bityutskiy Fri, 04 Jan 2013 09:52:41 +0200 + bmap-tools (2.0-0.rc1) unstable; urgency=low * Allow copying without bmap only if --nobmap was specified. diff --git a/packaging/bmap-tools.changes b/packaging/bmap-tools.changes index e5c7b8f..9a32d4f 100644 --- a/packaging/bmap-tools.changes +++ b/packaging/bmap-tools.changes @@ -1,3 +1,7 @@ +Fri Jan 4 07:55:05 UTC 2013 - Artem Bityutskiy 2.0-0.rc2 +- Fix writing to block devices, which was broken in rc1. +- Make the informational messages a bit nicer. + Thu Dec 20 08:48:26 UTC 2012 - Artem Bityutskiy 2.0-0.rc1 - Allow copying without bmap only if --nobmap was specified. - Auto-discover the bmap file. diff --git a/packaging/bmap-tools.dsc b/packaging/bmap-tools.dsc index cd4a751..a7079fa 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.rc1 +Version: 2.0-0.rc2 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 bbe191d..5b36ebb 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 1 +%define rc_num 2 %define rc_str %{?rc_num:0.rc%{rc_num}}%{!?rc_num:1} Name: bmap-tools diff --git a/setup.py b/setup.py index 9932e9c..1840ba1 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-rc1", + version = "2.0-rc2", scripts = ['bmaptool'], packages = find_packages(exclude = [ "test*" ]), license='GPLv2',