Browse Source

Version bumped up to 0.9.3

Matthew Wang 10 years ago
parent
commit
bc2b4bf5db
2 changed files with 8 additions and 2 deletions
  1. 7
    1
      CHANGES
  2. 1
    1
      cdiff.py

+ 7
- 1
CHANGES View File

@@ -2,12 +2,18 @@
2 2
 Change log
3 3
 ==========
4 4
 
5
+Version 0.9.3 (2013-09-28)
6
+
7
+  - Moved screenshots to 'gh-pages' branch
8
+  - Handle all keyboard interrupts more completely
9
+  - Explicitly set default encoding to utf-8
10
+  - Fixed broken output diff when I/O with filterdiff in nonblocking mode
11
+
5 12
 Version 0.9.2 (2013-06-21)
6 13
 
7 14
   - Enahanced option parser now pass unknown option to underneath revision
8 15
     control, user can use `cdiff --cached`, `cdiff -U5` directly
9 16
 
10
-
11 17
 Version 0.9.1 (2013-05-20)
12 18
 
13 19
   - Use `--no-ext-diff` to disable GIT_EXTERNAL_DIFF and diff.external which

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