From 283c504087d1b5efe67c440f3a1ee43f9cc08c85 Mon Sep 17 00:00:00 2001 From: David Precious Date: Fri, 7 Oct 2011 11:29:10 +0100 Subject: [PATCH] Bump version, update Changes --- Changes | 9 +++++++-- lib/Bot/BasicBot/Pluggable/Module/GitHub.pm | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index b3659a5..df0b724 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,15 @@ Revision history for Bot-BasicBot-Pluggable-Module-GitHub -{{NEXT} 2011-???? - Bugfix: check for failure properly before attempting to announce a +0.02 2011-10-07 + [ BUG FIXES ] + Check for failure properly before attempting to announce a commit. (Previously we checked we got something non-false back; if we asked for a commit that wasn't found, we get a hashref with an error key, so check for that.) + + Auth info should be optional when using !setgithubproject. Public + projects of course do not require auth, but due to a fuckup in the + regex, it would not recognise it otherwise. 0.01 2011-10-05 About time this was released; it's proven itself in #dancer on diff --git a/lib/Bot/BasicBot/Pluggable/Module/GitHub.pm b/lib/Bot/BasicBot/Pluggable/Module/GitHub.pm index 08f016e..0221d0f 100644 --- a/lib/Bot/BasicBot/Pluggable/Module/GitHub.pm +++ b/lib/Bot/BasicBot/Pluggable/Module/GitHub.pm @@ -11,7 +11,7 @@ use base 'Bot::BasicBot::Pluggable::Module'; use strict; use Net::GitHub::V2; -our $VERSION = '0.01'; +our $VERSION = '0.02'; # We'll cache suitably-configured Net::GitHub objects for each channel. my %net_github;