Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit e1a3d68

Browse files
committed
Bump version to 0.6.0, update copyright year
1 parent e70e8ae commit e1a3d68

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Change Log
22

3+
## [v0.6.0](https://github.com/martynsmith/node-irc/tree/v0.6.0) (2016-07-01)
4+
[Full Changelog](https://github.com/Throne3d/node-irc/compare/v0.5.2...v0.6.0)
5+
6+
This is the first version of a fork to the project.
7+
It attempts to address some of the more major issues with the original version.
8+
It is also the first version to stop testing against node.js 0.10 and 0.12.
9+
10+
**Implemented enhancements:**
11+
12+
- Upgrade dependency tape
13+
- Switch to eslint instead of jscs for linting, now jscs is no longer maintained
14+
- Support Japanese and Korean characters in nicknames, and add a corresponding option, `enableStrictMode`, to switch back to the more RFC2812-compliant parsing mode
15+
- Improve documentation; fix up some typographical errors, ensure code blocks parse correctly, improve some descriptions and add the `password` option to the options object
16+
17+
**Fixed bugs:**
18+
19+
- Keep track of users in each channel better, so the quit, kill and nick events are only passed the relevant channels.
20+
- Split lines by byte instead of character, so line splitting with higher Unicode codepoints (e.g. CJK characters) works
21+
- Prevent tests from hanging by properly disconnecting the client (and stopping the ping timer) when the 'close' event is received
22+
- Related to the above, do not respawn a connection when receiving the 'close' event if the connection is not the current connection (as it has presumably been abandoned)
23+
- Only send messages when the bot's connection is available, to prevent a crash when messages are queued and the connection ends
24+
25+
326
## [v0.5.2](https://github.com/martynsmith/node-irc/tree/v0.5.2) (2016-11-25)
427
[Full Changelog](https://github.com/martynsmith/node-irc/compare/v0.5.1...v0.5.2)
528

@@ -470,4 +493,4 @@
470493
## [v0.1.0](https://github.com/martynsmith/node-irc/tree/v0.1.0) (2010-05-14)
471494

472495

473-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
496+
\* *Some of this Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = u'node-irc'
44-
copyright = u'2011, Edward Jones'
44+
copyright = u'2017, Edward Jones'
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.5'
51+
version = '0.6'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.5.2'
53+
release = '0.6.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "irc",
33
"description": "An IRC client library for node",
4-
"version": "0.5.2",
4+
"version": "0.6.0",
55
"author": "Edward Jones <[email protected]>",
66
"scripts": {
77
"test": "./node_modules/faucet/bin/cmd.js test/test-*.js",

0 commit comments

Comments
 (0)