Version bump for 2.0. 2.0
authorEric S. Raymond <esr@thyrsus.com>
Sat, 16 Nov 2013 10:39:22 +0000 (05:39 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Sat, 16 Nov 2013 10:39:22 +0000 (05:39 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 957e55aa362292f3bce288068bb0fb6354fd04c5..59e35c7d4f8749984e6155dae1cc83f8cd62436d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,11 @@
                        irker history 
 
-2.0 @ 
+2.0 @ 2013-11-16
+  The dependency on irclib is gone.
   An email delivery method, suitable for use on SourceForge.
   irkerhook can now be used as a hg changegroup hook.
-  Prevent misbehavior un UTF-8 in commit metadata.
-  The dependency on irclib is gone.
+  Prevent misbehavior on UTF-8 in commit metadata.
+  Fix a crash bug on invalid hostnames.
 
 1.20 @ 2013-05-17
   Compatibility back to Python 2.4 (provided simplejson is present).
diff --git a/irkerd b/irkerd
index fb4aae6dd74cd0f9ed44d5fff8dc28adf9431f0f..a43197e2aa0006cf58d95be36470b3e958ed6728 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -43,7 +43,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "1.20"       # Bump this to 2.0 on the next release.
+version = "2.0"
 
 import sys, getopt, urlparse, time, random, socket, signal, re
 import threading, Queue, SocketServer, select
index b622a44579392cc980b23443f3ed2b452b11dfcd..8087935f502d9a21e8222bdf42e47df456377f2c 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.20"
+version = "2.0"
 
 import os, sys, commands, socket, urllib, subprocess, locale, datetime
 from pipes import quote as shellquote