Pre-release 1.0-rc7
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 29 Nov 2012 10:42:17 +0000 (12:42 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 29 Nov 2012 13:57:21 +0000 (15:57 +0200)
Change-Id: Id4ca03e5fc21632ad6a457ae9914446d886a041e
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 6e2409d..866deb9 100644 (file)
@@ -1,5 +1,5 @@
-Pre-release 0.7
-~~~~~~~~~~~~~~~
+Pre-release 1.0-rc7
+~~~~~~~~~~~~~~~~~~~
 
 We are approaching the first bmap-tools release 1.0. All the features are
 implemented, automated tests are implemented. We provide nice API modules
index f19e363..29fbdf6 100755 (executable)
--- a/bmaptool
+++ b/bmaptool
@@ -33,7 +33,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 = "0.6"
+VERSION = "1.0-rc7"
 
 import argparse
 import sys
index 348f32f..7baa9e1 100644 (file)
@@ -1,3 +1,14 @@
+bmap-tools (1.0-0.rc7) unstable; urgency=low
+
+  * Add a Fiemap.py module which implements python API to the linux FIEMAP ioct.
+  * Use the FIEMAP ioctl properly and optimally.
+  * Add unit-tests, current test coverage is 66%.
+  * A lot of core rerafactoring.
+  * Several bug fixes in 'BmapCopy' (e.g., .tar.gz format support was broken).
+  * Add README and RELEASE_NOTES files.
+
+ -- Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Thu, 29 Nov 2012 12:29:39 +0200
+
 bmap-tools (0.6) unstable; urgency=low
 
   * Improve the base API test to cover the case when there is no bmap.
index ddb3b2c..5e01aed 100644 (file)
@@ -1,3 +1,11 @@
+Thu Nov 29 10:30:20 UTC 2012 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 1.0-rc7
+- Add a Fiemap.py module which implements python API to the linux FIEMAP ioct.
+- Use the FIEMAP ioctl properly and optimally.
+- Add unit-tests, current test coverage is 66%.
+- A lot of core rerafactoring.
+- Several bug fixes in 'BmapCopy' (e.g., .tar.gz format support was broken).
+- Add README and RELEASE_NOTES files.
+
 Wed Nov 21 14:45:48 UTC 2012 - Artem Bityutskiy <artem.bityutskiy@linux.intel.com> 0.6
 - Improve the base API test to cover the case when there is no bmap.
 - Fix a bug when copying without bmap.
index c26b2cc..e21305a 100644 (file)
@@ -2,7 +2,7 @@ Format: 1.0
 Source: bmap-tools
 Binary: bmap-tools
 Architecture: all
-Version: 0.6
+Version: 1.0-0.rc7
 Maintainer: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index 7699551..2475d8b 100644 (file)
@@ -1,7 +1,13 @@
+%define rc_num 7
+
+%if 0%{?rc_num}
+%define rc_str 0.rc%{rc_num}
+%endif
+
 Name:       bmap-tools
 Summary:    Bmap Tools
-Version:    0.6
-Release:    1
+Version:    1.0
+Release:    %{?rc_str}.<CI_CNT>.<B_CNT>
 Group:      Development/Tools/Other
 License:    GPL-2.0
 BuildArch:  noarch
index a2e2d83..94bcf53 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 = "0.6",
+    version = "1.0-rc7",
     scripts = ['bmaptool'],
     packages = find_packages(exclude = [ "test*" ]),
     license='GPLv2',