Version bump for 1.14 release.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 26 Nov 2012 06:06:56 +0000 (01:06 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 26 Nov 2012 06:06:56 +0000 (01:06 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 269b9711d97da2e6c8e4edaed3fa4965c6485a01..7d024193aa7e5d35fe45ddf0cba8a600d2408af8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
                        irker history 
 
+1.14 @ 
+  irclib 5.0 and urlparse compatibility fixes.
+
 1.13 @ 2012-11-06
   Fix for a very rare thread race found by AI0867.
   Work around a midesign in the IRC library.
diff --git a/irkerd b/irkerd
index 202593a2a63beacb6481d7ecc64c7775c1b1634b..884fe6d92ae1551291e4b7b66f4ab582163bce5b 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.13"
+version = "1.14"
 
 import sys, getopt, urlparse, time, random, socket, signal
 import threading, Queue, SocketServer
index 6a46622bae3dba1fce1052e7ee8988653da04270..4434aa0be44044cd53a3f5ff027195eb615f8ca6 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.13"
+version = "1.14"
 
 import os, sys, commands, socket, urllib, subprocess, locale
 from pipes import quote as shellquote