Pre-release version 2.0-rc5
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 15 Jan 2013 12:53:16 +0000 (14:53 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Tue, 15 Jan 2013 12:53:16 +0000 (14:53 +0200)
Change-Id: Iad8b4cadbcc294d15bb756ab7dc7e1afbf1b8110
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
RELEASE_NOTES
bmaptool
debian/changelog
packaging/bmap-tools.changes
packaging/bmap-tools.dsc
packaging/bmap-tools.spec
setup.py

index a3b5f86..766cf85 100644 (file)
@@ -1,4 +1,4 @@
-Pre-release 2.0-rc4
+Pre-release 2.0-rc5
 ~~~~~~~~~~~~~~~~~~~
 
 There are several user-visible changes in 'bmaptool copy':
index b1a5b76..61a6dd5 100755 (executable)
--- 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
index 48b8b51..7f7834d 100644 (file)
@@ -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 <artem.bityutskiy@linux.intel.com> Tue, 15 Jan 2013 14:51:27 +0200
+
 bmap-tools (2.0-0.rc4) unstable; urgency=low
 
   * Fix bmap autodiscovery.
index c881f8f..c604528 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 15 12:52:25 UTC 2013 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 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 <artem.bityutskiy@linux.intel.com> 2.0-0.rc4
 - Fix bmap autodiscovery.
 
index b8ea6e6..0e7241d 100644 (file)
@@ -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 <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index 7e9c74d..21fb9c7 100644 (file)
@@ -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
index f028c1c..e2bae57 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 = "2.0-rc4",
+    version = "2.0-rc5",
     scripts = ['bmaptool'],
     packages = find_packages(exclude = [ "test*" ]),
     license='GPLv2',