Browse Source

Version 0.9.6 Fix TypeError exception in auto width logic

Matthew Wang 10 years ago
parent
commit
121c28bc35
2 changed files with 5 additions and 1 deletions
  1. 4
    0
      CHANGES.rst
  2. 1
    1
      cdiff.py

+ 4
- 0
CHANGES.rst View File

@@ -2,6 +2,10 @@
2 2
 Change log
3 3
 ==========
4 4
 
5
+Version 0.9.6 (2014-06-20)
6
+
7
+  - Fix TypeError exception in auto width logic
8
+
5 9
 Version 0.9.5 (2014-06-19)
6 10
 
7 11
   - Option ``--width 0`` now fits terminal size automatically

+ 1
- 1
cdiff.py View File

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