Skip to content

Commit 769e8eb

Browse files
committed
2.0.0
1 parent 96e1cdd commit 769e8eb

File tree

10 files changed

+24
-9
lines changed

10 files changed

+24
-9
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
2.0.0 (2023-04-26)
2+
==================
3+
4+
NOTE: This release removes support for Node 16. Please update to Node 18 or greater.
5+
6+
Deprecations and Removals
7+
-------------------------
8+
9+
- Use `yarn` instead of `npm`, to be in-line with other matrix.org projects. ([\#95](https://github.com/matrix-org/node-irc/issues/95))
10+
- Add support for Node 20, and drop support for Node 16. ([\#100](https://github.com/matrix-org/node-irc/issues/100))
11+
12+
13+
Internal Changes
14+
----------------
15+
16+
- Add support for testing against an actual IRCD. ([\#94](https://github.com/matrix-org/node-irc/issues/94))
17+
- Add support for splitting out the IRC connection state, and connecting via an existing socket. ([\#99](https://github.com/matrix-org/node-irc/issues/99))
18+
- Use ergo as our ircd of choice for automated testing. ([\#101](https://github.com/matrix-org/node-irc/issues/101))
19+
- Export utilities for testing against ircds. ([\#102](https://github.com/matrix-org/node-irc/issues/102))
20+
21+
122
1.5.0 (2022-10-03)
223
==================
324

changelog.d/100.removal

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/101.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/102.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/94.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/95.removal

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/99.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "matrix-org-irc",
33
"description": "An IRC client library for node, written in Typescript.",
4-
"version": "1.5.0",
4+
"version": "2.0.0",
55
"author": "Matrix.org (original fork from Martyn Smith <martyn@dollyfish.net.nz>)",
66
"scripts": {
77
"prepare": "yarn run build",

scripts/changelog-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
VERSION=`python3 -c "import json; f = open('./package.json', 'r'); v = json.loads(f.read())['version']; f.close(); print(v)"`
3-
towncrier --version $VERSION $1
3+
towncrier build --version $VERSION $1

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3556,7 +3556,7 @@ run-parallel@^1.1.9:
35563556
dependencies:
35573557
queue-microtask "^1.2.2"
35583558

3559-
rxjs@*:
3559+
rxjs@^7.5.2:
35603560
version "7.8.0"
35613561
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
35623562
integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==

0 commit comments

Comments
 (0)