Pre-release 2.0-rc2
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Fri, 4 Jan 2013 07:57:54 +0000 (09:57 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Fri, 4 Jan 2013 08:14:19 +0000 (10:14 +0200)
Change-Id: I43508315224221e42dbf149dd026b0636b17358e
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 c6050c9..9a19419 100644 (file)
@@ -1,4 +1,4 @@
-Pre-release 2.0-rc1
+Pre-release 2.0-rc2
 ~~~~~~~~~~~~~~~~~~~
 
 There are several user-visible changes in 'bmaptool copy':
index cdf380e..fc11103 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-rc1"
+VERSION = "2.0-rc2"
 
 import argparse
 import sys
index d7966ba..7a32ba8 100644 (file)
@@ -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 <artem.bityutskiy@linux.intel.com> 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.
index e5c7b8f..9a32d4f 100644 (file)
@@ -1,3 +1,7 @@
+Fri Jan  4 07:55:05 UTC 2013 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 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 <artem.bityutskiy@linux.intel.com> 2.0-0.rc1
 - Allow copying without bmap only if --nobmap was specified.
 - Auto-discover the bmap file.
index cd4a751..a7079fa 100644 (file)
@@ -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 <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index bbe191d..5b36ebb 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 1
+%define rc_num 2
 %define rc_str %{?rc_num:0.rc%{rc_num}}%{!?rc_num:1}
 
 Name:       bmap-tools
index 9932e9c..1840ba1 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-rc1",
+    version = "2.0-rc2",
     scripts = ['bmaptool'],
     packages = find_packages(exclude = [ "test*" ]),
     license='GPLv2',