Version bump for release. 1.7
authorEric S. Raymond <esr@thyrsus.com>
Fri, 5 Oct 2012 15:33:10 +0000 (11:33 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 5 Oct 2012 15:33:10 +0000 (11:33 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 2887999e3e40e7b0638b492b5db876637f8efc05..dbb599fcea3bee3446325df3544082da21f2d2ee 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
                        irker history 
 
-1.7 @
+1.7 @ 2012-10-05
   This is a stable release.
   Optional metadata filtering with a user-specified command.
   irkerd code is now armored against IRC library errors in the delivery threads.
diff --git a/irkerd b/irkerd
index 877da0e4b7594eded063d9d93ec0938be7dd6589..2ba1c5245ba94506657e83fcbc9f51d14c702311 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -38,6 +38,8 @@ ANTI_BUZZ_DELAY = 0.09                # Anti-buzz delay after queue-empty check
 
 # No user-serviceable parts below this line
 
+version = "1.7"
+
 # This black magic imports support for green threads (coroutines),
 # then has kinky sex with the import library internals, replacing
 # "threading" with a coroutine-using imposter.  Threads then become
@@ -66,8 +68,6 @@ try:
 except ImportError:
     import json
 
-version = "1.6"
-
 # Sketch of implementation:
 #
 # One Irker object manages multiple IRC sessions.  It holds a map of
index a8cde654a2c3e8fa8e100ec028a3ae2f3f3fe738..a02c5c52da2cbb0bd77c72fcb8d244d6c88997fd 100755 (executable)
@@ -37,6 +37,8 @@ default_channels = "irc://chat.freenode.net/%(project)s,irc://chat.freenode.net/
 # No user-serviceable parts below this line:
 #
 
+version = "1.7"
+
 import os, sys, commands, socket, urllib, subprocess
 from pipes import quote as shellquote
 try:
@@ -44,8 +46,6 @@ try:
 except ImportError:
     import json
 
-version = "1.6"
-
 def do(command):
     return commands.getstatusoutput(command)[1]