Skip to content

Commit

Permalink
release 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
atmos committed Nov 1, 2011
1 parent 02abb83 commit 9c250cd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
v1.1.8
======
* Fix a bug in robot.respond that allowed regexes to be constructed that
could be triggered without prefixing with the robot's name - atmos
* Fixup rarely triggered response stuff that uses an undefined variable

v1.1.7
======
* Fix username issues where campfire names weren't updated - atmos
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "hubot",
"version": "1.1.7",
"version": "1.1.8",
"author": "hubot",
"keywords": "github hubot campfire bot",
"description": "A simple helpful Robot for your Company",
Expand Down
2 changes: 1 addition & 1 deletion src/hubot/campfire.coffee
Expand Up @@ -190,7 +190,7 @@ class CampfireStreaming extends EventEmitter
if response.statusCode >= 400
switch response.statusCode
when 401 then throw new Error("Invalid access token provided, campfire refused the authentication")
else console.log "campfire error: #{err}"
else console.log "campfire error: #{response.statusCode}"


try
Expand Down
2 changes: 1 addition & 1 deletion src/templates/package.json
Expand Up @@ -15,7 +15,7 @@
},

"dependencies": {
"hubot": "1.1.7",
"hubot": "1.1.8",
"hubot-scripts": "1.1.5",
"optparse": "1.0.1"
}
Expand Down

0 comments on commit 9c250cd

Please sign in to comment.