Version bump for 2.2 release. 2.2
authorEric S. Raymond <esr@thyrsus.com>
Fri, 29 Nov 2013 11:11:31 +0000 (06:11 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 29 Nov 2013 11:11:31 +0000 (06:11 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 9eb4e80161e613b35a9634eb3c8ba4f08f35dea8..3567d2664009fb7e85320c2e69f06b1ffc3acdbc 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,8 @@
                        irker history 
 
-Repository head:
-  Fixed unicode processing
+2.2 @ 2013-11-29
+  Fixed Unicode processing - got busted in 2.0 when irclib was removed.
+  Show Pyton traceback on higher debug levels.
 
 2.1 @ 2013-11-26
   A performance improvement in the git repository hook.
diff --git a/irkerd b/irkerd
index 9693e6d687ea7fd1de0176f52a6e01a823171ba0..f3c53a6860d4cd1c1cf87dac7b1392519595c8ca 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -43,7 +43,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "2.1"
+version = "2.2"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer, select
index 5852b120fe012e0c6eff5dbece5855989a148bf3..35f305af37e6dbf3a2ff364399aa8b270ef36d69 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "2.1"
+version = "2.2"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote