Version bump for release. 1.2
authorEric S. Raymond <esr@thyrsus.com>
Sun, 30 Sep 2012 07:08:40 +0000 (03:08 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 30 Sep 2012 07:08:40 +0000 (03:08 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index c6f31702736eced6615199bc883863ec92e87e08..ed901827d785ff893053697ab8e07193671ccccf 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,15 +1,16 @@
                        irker history 
 
 1.0 @ 2012-09-27
-  First production version, somewhat rushed by the sudden death of cia.vc.
+  First production version, somewhat rushed by the sudden death of cia.vc
+  on 24 September.
 
 1.1 @ 2012-09-28
   Add a delay to avoid threads spinning on the empty-queue-check, eating CPU.
   Fix a bug in reporting of multi-file commits.
 
-1.2 @
+1.2 @ 2012-09-30
   All segments of a message with embedded newlines are now transmitted.
-  Message reduction - irkerhook drips the filelist on execessively long ones.
+  Message reduction - irkerhook drops the filelist on execessively long ones.
   Shell quote hardening in irkerhook.py and some anti-DoS logic.
 
 
diff --git a/irkerd b/irkerd
index bc53d5e9d938ef3d9bc922d3b500be5ad621e461..041063e787b87268f534722256005a4283547bf3 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -43,7 +43,7 @@ import sys, json, getopt, urlparse, time, random
 import threading, Queue, SocketServer
 import irc.client, logging
 
-version = "1.1"
+version = "1.2"
 
 # Sketch of implementation:
 #
index 523eb83e9dd5d8ce77172c797c299dc96c301f9a..6d35fa916ddeefc19e32db21463b92e479e17315 100755 (executable)
@@ -73,7 +73,7 @@ tinyifier = "http://tinyurl.com/api-create.php?url="
 
 import os, sys, commands, socket, urllib, json
 
-version = "1.1"
+version = "1.2"
 
 def shellquote(s):
     return "'" + s.replace("'","'\\''") + "'"