Version bump for 1.9 release. 1.19
authorEric S. Raymond <esr@thyrsus.com>
Sun, 5 May 2013 18:25:31 +0000 (14:25 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 5 May 2013 18:25:31 +0000 (14:25 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 1f63f660d7d5a6c9c21e54801838a9548724d207..0bd30e7ab8e9d9110fd23d8945d3fb33eab3ef26 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,9 @@
                        irker history 
 
-1.18
+1.19 @ 2013-05-06
+  Fixed a minor bug in argument processing
+
+1.18 @ 2013-04-16
   Added -l option; irker can now be used as a channel monitor.
   Added -n and -p option: the nick can be forced and authenticated.
 
diff --git a/irkerd b/irkerd
index 1b25d9259c532a70a763356916458fd522e83aa5..391ff3699cbe8af728886d865b9cd5089b0bd12c 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -44,7 +44,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "1.18"
+version = "1.19"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer
index 972a6ab74466a50a2bd42faa8a3731df02967ac3..38b3552cac84349ed856226793b5c6b43549033c 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.18"
+version = "1.19"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote