Pre-release version 0.2
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Fri, 9 Nov 2012 10:22:31 +0000 (12:22 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Fri, 9 Nov 2012 10:22:31 +0000 (12:22 +0200)
Change-Id: Iff5a35b4a0bd9781ae160249a669b0cd7d32b53e
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
bmaptool
debian/changelog
packaging/bmap-tools.changes
packaging/bmap-tools.dsc
packaging/bmap-tools.spec
setup.py

index d8c8d87..8f1cd57 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.1.1"
+VERSION = "0.2"
 
 import argparse
 import sys
index a616668..7c54600 100644 (file)
@@ -1,3 +1,13 @@
+bmap-tools (0.2) unstable; urgency=low
+
+  * Release 0.2 - mostly internal code re-structuring and renamings,
+    not much functional changes.
+  * The 'bmap-flasher' and 'bmap-creator' tools do not exist anymore. Now
+    we have 'bmaptool' which supports 'copy' and 'create' sub-commands instead.
+  * The BmapFlasher module was also re-named to BmapCopy.
+
+ -- Artem Bityutskiy <artem.bityutskiy@linux.intel.com>  Fri, 09 Nov 2012 12:20:37 +0200
+
 bmap-tools (0.1.1) unstable; urgency=low
 
   * Release 0.1.1 - a lot of fixes and speed improvements.
index 2bec8b3..f833dc5 100644 (file)
@@ -1,3 +1,10 @@
+Fri Nov  9 10:21:31 UTC 2012 - Artem.Bityutskiy@intel.com
+- Release 0.2 - mostly internal code re-structuring and renamings,
+  not much functional changes.
+- The 'bmap-flasher' and 'bmap-creator' tools do not exist anymore. Now
+  we have 'bmaptool' which supports 'copy' and 'create' sub-commands instead.
+- The BmapFlasher module was also re-named to BmapCopy.
+
 Wed Nov  7 09:37:59 UTC 2012 - Artem.Bityutskiy@intel.com
 - Release 0.1.1 - a lot of fixes and speed improvements.
 
index 85f40b4..9268635 100644 (file)
@@ -2,7 +2,7 @@ Format: 1.0
 Source: bmap-tools
 Binary: bmap-tools
 Architecture: all
-Version: 0.1.0
+Version: 0.2
 Maintainer: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7), python-all, python-distribute
index a2b777f..ccc2707 100644 (file)
@@ -1,6 +1,6 @@
 Name:       bmap-tools
 Summary:    Bmap Tools
-Version:    0.1.1
+Version:    0.2
 Release:    1
 Group:      Development/Tools/Other
 License:    GPL-2.0
index 1c676a6..cbee207 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.1.0",
+    version = "0.2",
     scripts = ['bmaptool'],
     packages = find_packages(),
     license='GPLv2',