Prepare 1.15 release, with a minor bugfix in the Subversion hook.. 1.15
authorEric S. Raymond <esr@thyrsus.com>
Sun, 9 Dec 2012 01:37:32 +0000 (20:37 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 9 Dec 2012 01:37:32 +0000 (20:37 -0500)
NEWS
irkerd
irkerhook.py

diff --git a/NEWS b/NEWS
index 0968f0b7425ddd17e0109747e9e19a5278448152..b03c2b47fdeb9bca33b13420df5a9df6c030930a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,9 @@
                        irker history 
 
-1.14 @ 2012-12-26
+1.15 @ 2012-12-08
+  Don't append an extra newline in the Subversion hook.
+
+1.14 @ 2012-11-26
   irclib 5.0 and urlparse compatibility fixes.
 
 1.13 @ 2012-11-06
diff --git a/irkerd b/irkerd
index 884fe6d92ae1551291e4b7b66f4ab582163bce5b..5f90fdcdff0c775d63399eb3710d202cb44aad23 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -42,7 +42,7 @@ CONNECTION_MAX = 200          # To avoid hitting a thread limit
 
 # No user-serviceable parts below this line
 
-version = "1.14"
+version = "1.15"
 
 import sys, getopt, urlparse, time, random, socket, signal
 import threading, Queue, SocketServer
index 4434aa0be44044cd53a3f5ff027195eb615f8ca6..59bd796eaa19063269f1cf3138a5d9fadca4a208 100755 (executable)
@@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 # No user-serviceable parts below this line:
 #
 
-version = "1.14"
+version = "1.15"
 
 import os, sys, commands, socket, urllib, subprocess, locale
 from pipes import quote as shellquote
@@ -300,7 +300,7 @@ class SvnExtractor(GenericExtractor):
         commit.rev = "r%s" % self.id
         commit.author = self.svnlook("author")
         commit.files = self.svnlook("dirs-changed").strip().replace("\n", " ")
-        commit.logmsg = self.svnlook("log").strip() + "\n"
+        commit.logmsg = self.svnlook("log").strip()
         return commit
     def svnlook(self, info):
         return do("svnlook %s %s --revision %s" % (shellquote(info), shellquote(self.repository), shellquote(self.id)))