File: fix_version.patch

package info (click to toggle)
icdiff 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 392 kB
  • ctags: 51
  • sloc: python: 436; sh: 106; makefile: 18
file content (16 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: fix version number
 Apparently upstream forgot to bump the version number in the main executable,
 now causing the automated tests to fail.
Author: Sascha Steinbiss <sascha@steinbiss.name>
Applied-Upstream: https://github.com/jeffkaufman/icdiff/pull/56
--- a/icdiff
+++ b/icdiff
@@ -19,7 +19,7 @@
 import unicodedata
 import codecs
 
-__version__ = "1.7.2"
+__version__ = "1.7.3"
 
 color_codes = {
     "red":     '\033[0;31m',