Version bumpp for 1.20 release. 1.20
authorEric S. Raymond <esr@thyrsus.com>
Fri, 17 May 2013 12:49:26 +0000 (08:49 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 17 May 2013 12:49:26 +0000 (08:49 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 0bd30e7ab8e9d9110fd23d8945d3fb33eab3ef26..9f3ff4c9af9c32effa547924c136bc69877cd6df 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
                        irker history 
 
+1.20 @ 2013-05-17
+  Compatibility back to Python 2.4 (provided simplejson is present).
+  Increased anti-flood delay to avoid trouble with freenode.
+
 1.19 @ 2013-05-06
   Fixed a minor bug in argument processing
 
diff --git a/irkerd b/irkerd
index bbdfb87f02d35aae7975b8045aeeb6eabddc58e2..f6c7146b77ccc05f4e1d7e49dfec2c1156a441ac 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -44,7 +44,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "1.19"
+version = "1.20"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer
index e713e194474d9d1ca547d206da30e26d15de8328..b96cd239b77c91613c3a39a76b54de3c485ab931 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.19"
+version = "1.20"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote