소스 검색

More robust parser to tolerate evil unified diff

Matthew Wang 8 년 전
커밋
2a5accf2dc
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 4
    0
      CHANGES.rst
  2. 1
    1
      cdiff.py

+ 4
- 0
CHANGES.rst 파일 보기

@@ -2,6 +2,10 @@
2 2
 Change log
3 3
 ==========
4 4
 
5
+Version 0.9.8 (2016-01-16)
6
+
7
+  - More robust parser to tolerate evil unified diff
8
+
5 9
 Version 0.9.7 (2015-04-24)
6 10
 
7 11
   - Fix unexpected side-by-side output for diff of diff

+ 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.9.7',
11
+    'version'     : '0.9.8',
12 12
     'license'     : 'BSD-3',
13 13
     'author'      : 'Matthew Wang',
14 14
     'email'       : 'mattwyl(@)gmail(.)com',