Version bump for 2.5 release. 2.5
authorEric S. Raymond <esr@thyrsus.com>
Wed, 25 Dec 2013 02:29:53 +0000 (21:29 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 25 Dec 2013 02:29:53 +0000 (21:29 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 6e6cfc2430f2ef8c3947d41f620db1ad9b02c3eb..a554509d6331d84ea0e420476b707c9d098c790e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
                        irker history 
 
+2.5 @ 2013-12-24
+   Bug fix - remove a deadlock we inherited from irclib.
+
 2.4 @ 2013-12-03
    Bug fix release - some users reported failure to connect with 2.3.
    Also prevent a crash if Unicode shows up in the wrong place.
diff --git a/irkerd b/irkerd
index b0bec84fbc9953d88b87c54f9fee6dc3db6a80c0..1f6af3dadaa0d1bfd3dae268282aeeac8812ab39 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.4"
+version = "2.5"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer, select
index 4ea7fbe21ff8accc1681f486ff8b90ba586371d2..fcd6f06a424a583d4064ac6e518107f546fee288 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "2.4"
+version = "2.5"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote