Version bump for release 2.4.
authorEric S. Raymond <esr@thyrsus.com>
Wed, 4 Dec 2013 00:35:21 +0000 (19:35 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 4 Dec 2013 00:35:21 +0000 (19:35 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index c42c98337d3a33d8ca985838463f82cf561a8c91..6e6cfc2430f2ef8c3947d41f620db1ad9b02c3eb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
                        irker history 
 
+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.
+
 2.3 @ 2013-11-30
   -i option enables immediate sending of one line in foreground.
 
diff --git a/irkerd b/irkerd
index 634c56918067a688b9c1bc1d44f8c635e2d3bbd9..f21f709e07296957b461ccd35deadde1d9c54d8e 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.3"
+version = "2.4"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer, select
index c7c7b0d585ab9a9da8747ed9eba750323c2972bb..4ea7fbe21ff8accc1681f486ff8b90ba586371d2 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "2.2"
+version = "2.4"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote