Version bump for release.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 1 Oct 2012 06:19:33 +0000 (02:19 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 1 Oct 2012 06:19:33 +0000 (02:19 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index f2b0c68da8ea9f92e9a326cf8a07d85f2dab83c1..92f17be25eaf0b0c70c91e0ab0b53a689f39acfd 100644 (file)
--- a/NEWS
+++ b/NEWS
   Message reduction - irkerhook drops the filelist on excessively long ones.
   Shell quote hardening in irkerhook.py and some anti-DoS logic.
 
-1.3 @
+1.3 @ 2012-10-01
   Support for an irker.conf file to set irkerhook variables under Subversion.
   Color highlighting of notification fields can be enabled. 
   irkerhook.py now has its own manual page.
   Added channelmax variable for rate-limiting.
   irkerd now uses green threads, with much lower overhead.
+  Fix a bug in handling of channel names with no prefix.
+
 
 
 
diff --git a/irkerd b/irkerd
index 91199dc73d3e336fd92efb7bdbb79a7cf69c0df9..d2030e66635daf838fa3ad0fb48f7cc59dce0ea7 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -61,7 +61,7 @@ import sys, json, getopt, urlparse, time, random
 import threading, Queue, SocketServer
 import irc.client, logging
 
-version = "1.2"
+version = "1.3"
 
 # Sketch of implementation:
 #
index 02cd212f796fe8e3ba6d39ce88f6218cdd8fcdaa..ebd85d5071a0b2703181e30c4294a15db629b8c2 100755 (executable)
@@ -39,7 +39,7 @@ default_channels = "irc://chat.freenode.net/%(project)s,irc://chat.freenode.net/
 
 import os, sys, commands, socket, urllib, json
 
-version = "1.2"
+version = "1.3"
 
 def shellquote(s):
     return "'" + s.replace("'","'\\''") + "'"