Ready for 1.13 release. 1.13
authorEric S. Raymond <esr@thyrsus.com>
Wed, 7 Nov 2012 05:45:23 +0000 (00:45 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 7 Nov 2012 05:45:23 +0000 (00:45 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index cd7fe8cd706bb5468235030d3588902fe5476138..269b9711d97da2e6c8e4edaed3fa4965c6485a01 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,8 @@
                        irker history 
 
-1.13 @
+1.13 @ 2012-11-06
   Fix for a very rare thread race found by AI0867.
-  The IRC library at version 3.4 or later is required for this version!
+  Work around a midesign in the IRC library.
 
 1.12 @ 2012-10-11
   Emergency workaround for a Unicode-handling error buried deep in irclib.
diff --git a/irkerd b/irkerd
index 4aa9d8a9665a1793a18275aa2ad91d8f02592e89..bcff3616ddee7c7eaefb829d8b5b947e0608966d 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -42,7 +42,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "1.12"
+version = "1.13"
 
 import sys, getopt, urlparse, time, random, socket, signal
 import threading, Queue, SocketServer
index f79ef5f01dbba4458831cef04da3203a80cc5821..a60084ecce81ad769eca6aa4071302e44bf5fe85 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.12"
+version = "1.13"
 
 import os, sys, commands, socket, urllib, subprocess, locale
 from pipes import quote as shellquote