浏览代码

Version bump up to 0.8

Matthew Wang 11 年前
父节点
当前提交
b6a591a6ce
共有 2 个文件被更改,包括 8 次插入2 次删除
  1. 7
    1
      CHANGES
  2. 1
    1
      cdiff.py

+ 7
- 1
CHANGES 查看文件

@@ -2,6 +2,12 @@
2 2
 Change log
3 3
 ==========
4 4
 
5
+Version 0.8 (2013-03-13)
6
+
7
+  - Parser is now robust enough to handle dangling headers and short patch
8
+  - PEP8 (with minor own flavors) and other code lint
9
+  - Change 'Development Status' to stable
10
+
5 11
 Version 0.7.1 (2013-02-25)
6 12
 
7 13
   - Handle 'Binary files ... differ'
@@ -56,7 +62,7 @@ Version 0.0.4 (2013-02-04)
56 62
   - Add CHANGES for history track and better versioning
57 63
 
58 64
 Version 0.0.3 (2013-02-04)
59
-  
65
+
60 66
   - Publish on PyPI, supports read patch from file, pipe and diff output from
61 67
     revision tools (thanks to `Steven Myint <https://github.com/myint>`_)
62 68
 

+ 1
- 1
cdiff.py 查看文件

@@ -8,7 +8,7 @@ python (>= 2.5.0) and ``less``.
8 8
 """
9 9
 
10 10
 META_INFO = {
11
-    'version'     : '0.7.1',
11
+    'version'     : '0.8',
12 12
     'license'     : 'BSD-3',
13 13
     'author'      : 'Matthew Wang',
14 14
     'email'       : 'mattwyl(@)gmail(.)com',