Version bump for 2.6. 2.6
authorEric S. Raymond <esr@thyrsus.com>
Tue, 4 Feb 2014 22:59:59 +0000 (17:59 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 4 Feb 2014 22:59:59 +0000 (17:59 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index a554509d6331d84ea0e420476b707c9d098c790e..ceacfb137036035a7b15d1505d8c4b4eb44e4e74 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
                        irker history 
 
+2.6 @ 2014-02-04
+   Fix for an infinite loop on failing to connect to IRC
+
 2.5 @ 2013-12-24
    Bug fix - remove a deadlock we inherited from irclib.
 
diff --git a/irkerd b/irkerd
index 0d6d6f8515ddf7c76140f6f584ee3f4631d57a3a..a71c841f2f766e3a2a0863240ad1bcf662fd2e73 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.5"
+version = "2.6"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer, select
index fcd6f06a424a583d4064ac6e518107f546fee288..d17248a59552e8cb098b439f49ebfc9a1693d3ac 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "2.5"
+version = "2.6"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote