Release version 2.0 v2.0
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 17 Jan 2013 09:36:04 +0000 (11:36 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 17 Jan 2013 09:36:04 +0000 (11:36 +0200)
Change-Id: I2b6233c43a52b4d4a405584e7f548c0128b22016
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 766cf85..67bd841 100644 (file)
@@ -1,5 +1,5 @@
-Pre-release 2.0-rc5
-~~~~~~~~~~~~~~~~~~~
+Pre-release 2.0
+~~~~~~~~~~~~~~~
 
 There are several user-visible changes in 'bmaptool copy':
 
index 61a6dd5..c631f9e 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-rc5"
+VERSION = "2.0"
 
 import argparse
 import sys
index 7f7834d..3130f33 100644 (file)
@@ -1,3 +1,9 @@
+bmap-tools (2.0-1) unstable; urgency=low
+
+  * Fix the an issue with running out of memory in TransRead.py.
+
+ -- Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Thu, 17 Jan 2013 11:33:15 +0200
+
 bmap-tools (2.0-0.rc5) unstable; urgency=low
 
   * When block device optimzations fail - raise an exception except of muting
index c604528..ee0b735 100644 (file)
@@ -1,3 +1,6 @@
+Thu Jan 17 09:34:00 UTC 2013 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 2.0-1
+- Fix the an issue with running out of memory in TransRead.py.
+
 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
index 0e7241d..364217f 100644 (file)
@@ -2,7 +2,7 @@ Format: 1.0
 Source: bmap-tools
 Binary: bmap-tools
 Architecture: all
-Version: 2.0-0.rc5
+Version: 2.0-1
 Maintainer: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index 21fb9c7..085a14e 100644 (file)
@@ -1,6 +1,5 @@
 # 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 5
 %define rc_str %{?rc_num:0.rc%{rc_num}}%{!?rc_num:1}
 
 Name:       bmap-tools
index e2bae57..9a2eb0d 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-rc5",
+    version = "2.0",
     scripts = ['bmaptool'],
     packages = find_packages(exclude = [ "test*" ]),
     license='GPLv2',