diff --git a/CHANGELOG.md b/CHANGELOG.md
index b70f7adf3..cf7ccc4fc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,15 @@
# Changelog
+## v5.0.0-alpha.1 - 2025-01-24
+
+[Full Changelog](https://github.com/nextcloud/forms/compare/v5.0.0-alpha.0...v5.0.0-alpha.1)
+
+### Fixed
+
+- fix: Add brute force protection to form endpoints by @susnux in [\#2269](https://github.com/nextcloud/forms/pull/2269)
+- Fix: only show confirmation dialog for active forms by @Chartman123 in [\#2504](https://github.com/nextcloud/forms/pull/2504)
+
## v5.0.0-alpha.0 - 2025-01-17
[Full Changelog](https://github.com/nextcloud/forms/compare/v4.3.0...v5.0.0-alpha.0)
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 40e25556e..b255a2cc0 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@
- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!
]]>
- 5.0.0-alpha.0
+ 5.0.0-alpha.1
agpl
Affan Hussain
diff --git a/package-lock.json b/package-lock.json
index 0d714c8ec..9673c837a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "forms",
- "version": "5.0.0-alpha.0",
+ "version": "5.0.0-alpha.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "forms",
- "version": "5.0.0-alpha.0",
+ "version": "5.0.0-alpha.1",
"license": "AGPL-3.0",
"dependencies": {
"@nextcloud/auth": "^2.4.0",
diff --git a/package.json b/package.json
index 03fa20e41..39fbdf926 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "forms",
- "version": "5.0.0-alpha.0",
+ "version": "5.0.0-alpha.1",
"private": true,
"description": "Forms app for nextcloud",
"homepage": "https://github.com/nextcloud/forms#readme",