Version bump for release.
authorEric S. Raymond <esr@thyrsus.com>
Sun, 7 Oct 2012 01:57:03 +0000 (21:57 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 7 Oct 2012 01:57:03 +0000 (21:57 -0400)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 266c036365712fae3463a685fe38c1d959e3e97e..13bf329dde401ed5774dc5d59c0141646638e9b6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,8 @@
                        irker history 
 
-1.8 @
+1.8 @ 2012-10-06
   It's now possible to send to nick URLs.
+  Cope gracefully if an IRC server dies or hands during the nick handshake.
 
 1.7 @ 2012-10-05
   This is a stable release.
diff --git a/irkerd b/irkerd
index d88d7e253f0a23c5f853d4ab3797e080b32614e9..3ee51b48394e935d6a80945db6222ffa90ca3bb9 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -40,7 +40,7 @@ ANTI_BUZZ_DELAY = 0.09                # Anti-buzz delay after queue-empty check
 
 # No user-serviceable parts below this line
 
-version = "1.7"
+version = "1.8"
 
 # This black magic imports support for green threads (coroutines),
 # then has kinky sex with the import library internals, replacing
index 90f04966e630c731ffe22f3075d49d073bb5aa46..7ad51b5c5aedda9316800382b773206a86b6316b 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/%(project)s,irc://chat.freenode.net/
 # No user-serviceable parts below this line:
 #
 
-version = "1.7"
+version = "1.8"
 
 import os, sys, commands, socket, urllib, subprocess
 from pipes import quote as shellquote