Skip to content

Commit c261a5e

Browse files
committed
4.0.0
1 parent 6601a90 commit c261a5e

File tree

5 files changed

+20
-14
lines changed

5 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 4.0.0 (2025-10-24)
2+
3+
## Bugfixes
4+
5+
- Update `matrix-appservice-bridge` to fix `IO.ELEMENT.MSC4190.M_APPSERVICE_LOGIN_UNSUPPORTED` error with MSC4190 enabled homeservers. ([\#1858](https://github.com/matrix-org/matrix-appservice-irc/issues/1858))
6+
7+
## Internal Changes
8+
9+
- Update required Node version to 22 and Docker image base to use Debian bookworm. ([\#1858](https://github.com/matrix-org/matrix-appservice-irc/issues/1858))
10+
11+
112
# 3.0.5 (2025-02-25)
213

314
### Internal Changes

CONTRIBUTING.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,13 @@ projects.
1111
### Doing a release
1212

1313
These steps are for the maintainers of the IRC bridge to refer to when doing a release.
14-
When doing an RC release, suffix a `-rcV` to the tag and version but NOT the branch.
14+
When doing an RC release, suffix a `-rcV` to the tag.
1515

16+
* Ensure you have a Python3 env and then `pip install towncrier`
1617
* `git checkout develop`
17-
* `git pull`
18-
* `git switch -c release-v0.V.0`
19-
* update package.json version number
20-
* `./scripts/changelog-release.sh`
21-
* `git commit CHANGELOG.md changelog.d package.json package-lock.json -m 'v0.V.0'`
22-
* `git tag --sign --message 'v0.V.0' '0.V.0'`
23-
* `git push origin release-v0.V.0`
24-
* `git push origin 0.V.0`
25-
* [Make a release on GitHub](https://github.com/matrix-org/matrix-appservice-irc/releases), copying the changelog into the body and marking it as pre-release
26-
* `yarn publish`
18+
* Bump the version in `package.json`
19+
* Run `./scripts/changelog-release.sh`
20+
* `git commit CHANGELOG.md changelog.d package.json -m 'x.y.z'`
21+
* `git tag x.y.z`
22+
* `git push origin develop x.y.z`
23+
* Create a release in GitHub

changelog.d/1858.bugfix

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

changelog.d/1858.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,6 +1,6 @@
11
{
22
"name": "matrix-appservice-irc",
3-
"version": "3.0.5",
3+
"version": "4.0.0",
44
"description": "An IRC Bridge for Matrix",
55
"main": "app.js",
66
"bin": "./bin/matrix-appservice-irc",

0 commit comments

Comments
 (0)