diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b9b3145e8..d8851c622 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.23" + ".": "0.4.24" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 87331a584..e46cbbc9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to Chatto. Maintained by release-please from the conventional-commit messages on `main` — do not edit by hand. +## [0.4.24](https://github.com/chattocorp/chatto/compare/v0.4.23...v0.4.24) (2026-09-08) + + +### Bug Fixes + +* **assets:** backport 10 MiB upload chunks to 0.4 ([#2314](https://github.com/chattocorp/chatto/issues/2314)) ([4536f82](https://github.com/chattocorp/chatto/commit/4536f820e71dbbf7d768f630dada02a52b9e8f08)) +* **frontend:** backport iOS video safe-area fix to 0.4 ([#2319](https://github.com/chattocorp/chatto/issues/2319)) ([1844db9](https://github.com/chattocorp/chatto/commit/1844db9c06e43b6dabdabd80f2e7d824436bab67)) + ## [0.4.23](https://github.com/chattocorp/chatto/compare/v0.4.22...v0.4.23) (2026-09-03) diff --git a/apps/frontend/package.json b/apps/frontend/package.json index d40e4fc4b..2a0a490ae 100644 --- a/apps/frontend/package.json +++ b/apps/frontend/package.json @@ -1,7 +1,7 @@ { "name": "chatto-frontend", "private": true, - "version": "0.4.23", + "version": "0.4.24", "license": "Apache-2.0", "type": "module", "scripts": { diff --git a/cli/version.go b/cli/version.go index b39f4c94c..abe9fef87 100644 --- a/cli/version.go +++ b/cli/version.go @@ -1,5 +1,5 @@ package main var ( - Version = "0.4.23" // x-release-please-version + Version = "0.4.24" // x-release-please-version )