Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace node-irc with irc-upd
  • Loading branch information
ekmartin committed Feb 14, 2018
1 parent c1ff1a1 commit e5cb8c6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
# Changelog
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.11.1] - 2018-02-14
### Fixed
- Replaced node-irc with @Throne3d's fork, [irc-upd](https://github.com/Throne3d/node-irc).

## [3.11.0] - 2017-05-12
### Added
- `muteUsers` config option for muting users on Slack and IRC -
Expand Down
2 changes: 1 addition & 1 deletion lib/bot.js
@@ -1,5 +1,5 @@
import _ from 'lodash';
import irc from 'irc';
import irc from 'irc-upd';
import logger from 'winston';
import { MemoryDataStore, RtmClient, WebClient } from '@slack/client';
import { ConfigurationError } from './errors';
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "slack-irc",
"version": "3.11.1",
"version": "3.11.2",
"description": "Connects IRC and Slack channels by sending messages back and forth.",
"keywords": [
"slack",
Expand Down Expand Up @@ -40,7 +40,7 @@
"@slack/client": "3.13.0",
"check-env": "1.3.0",
"commander": "2.10.0",
"irc": "0.5.2",
"irc-upd": "0.8.1",
"lodash": "^4.15.0",
"strip-json-comments": "2.0.1",
"winston": "2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion test/bot-events.test.js
Expand Up @@ -2,7 +2,7 @@
import chai from 'chai';
import sinonChai from 'sinon-chai';
import sinon from 'sinon';
import irc from 'irc';
import irc from 'irc-upd';
import logger from 'winston';
import Bot from '../lib/bot';
import SlackStub from './stubs/slack-stub';
Expand Down
2 changes: 1 addition & 1 deletion test/bot.test.js
Expand Up @@ -3,7 +3,7 @@ import chai from 'chai';
import sinon from 'sinon';
import logger from 'winston';
import sinonChai from 'sinon-chai';
import irc from 'irc';
import irc from 'irc-upd';
import Bot from '../lib/bot';
import SlackStub from './stubs/slack-stub';
import ChannelStub from './stubs/channel-stub';
Expand Down
2 changes: 1 addition & 1 deletion test/join-part.test.js
Expand Up @@ -3,7 +3,7 @@ import _ from 'lodash';
import chai from 'chai';
import sinonChai from 'sinon-chai';
import sinon from 'sinon';
import irc from 'irc';
import irc from 'irc-upd';
import logger from 'winston';
import Bot from '../lib/bot';
import SlackStub from './stubs/slack-stub';
Expand Down

1 comment on commit e5cb8c6

@ekmartin
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.