Skip to content

Commit 3f3a31d

Browse files
authored
Release v2.5.3 (#6108)
1 parent e3d4fd8 commit 3f3a31d

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unversioned
44

5+
## 2.5.3
6+
57
- Minor: Shared chat messages now use the source channel's profile picture to denote it's a shared chat message. (#5760)
68
- Minor: Moved the "Delete message" menu option into a "Moderate" sub-menu. (#6100)
79
- Bugfix: Fixed the channel name input not being focused when opening the select-channel dialog. (#6096)

docs/make-release.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
- [ ] Updated version code in `.CI/chatterino-installer.iss`
1212
This can only be "whole versions", so if you're releasing `2.4.0-beta` you'll need to condense it to `2.4.0`
1313

14-
- [ ] Update the changelog `## Unreleased` section to the new version `CHANGELOG.md`
15-
Make sure to leave the `## Unreleased` line unchanged for easier merges
14+
- [ ] Update the changelog `## Unversioned` section to the new version `CHANGELOG.md`
15+
Make sure to leave the `## Unversioned` line unchanged for easier merges
1616

1717
- [ ] Ensure all GitHub API credentials from the `chatterino-ci` user are still valid
1818

@@ -21,10 +21,11 @@
2121
- [ ] Tag the release
2222
- [ ] Manually run the [create-installer](https://github.com/Chatterino/chatterino2/actions/workflows/create-installer.yml) workflow.
2323
This is only necessary if the tag was created after the CI in the main branch finished.
24-
- [ ] If the winget releaser action doesn't work as expected, you can run this manually using [Komac](https://github.com/russellbanks/Komac), replacing `v2.5.2` with the current release:
24+
- [ ] **Stable release only** If the winget releaser action doesn't work as expected, you can run this manually using [Komac](https://github.com/russellbanks/Komac), replacing `v2.5.2` with the current release:
2525
`komac update ChatterinoTeam.Chatterino --version 2.5.2 --urls https://github.com/Chatterino/chatterino2/releases/download/v2.5.2/Chatterino.Installer.exe`
26+
- [ ] Ensure changelog on website is up-to-date
2627

2728
## After the binaries have been uploaded to fourtf's bucket
2829

29-
- [ ] Re-run the Publish Homebrew Cask on Release action
30+
- [ ] **Stable release only** Re-run the Publish Homebrew Cask on Release action
3031
- [ ] Update links in the Chatterino website to point to the new release

resources/com.chatterino.chatterino.appdata.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
<binary>chatterino</binary>
3535
</provides>
3636
<releases>
37+
<release version="2.5.3" date="2025-03-23">
38+
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.3</url>
39+
</release>
3740
<release version="2.5.3~beta1" date="2025-03-17">
3841
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.3-beta.1</url>
3942
</release>

src/common/Version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace chatterino {
2525
* - 2.4.0-alpha.2
2626
* - 2.4.0-alpha
2727
**/
28-
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.3-beta.1");
28+
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.3");
2929

3030
class Version
3131
{

0 commit comments

Comments
 (0)