chore: bump version to 2.9.0 (#20925)

## Summary

- Moves current version to previous versions array
- Sets TWENTY_CURRENT_VERSION to the new version
- Updates TWENTY_NEXT_VERSIONS with the next minor version
- Bumps twenty-client-sdk, twenty-sdk, and create-twenty-app to the same
version

## Checklist

- [ ] Verify version constants are correct
- [ ] Verify npm package versions match

Co-authored-by: Github Action Deploy <github-action-deploy@twenty.com>
This commit is contained in:
twenty-pr[bot]
2026-05-26 17:14:22 +02:00
committed by GitHub
parent bb5c2bd00c
commit 059e75e532
6 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "2.8.0",
"version": "2.9.0",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-client-sdk",
"version": "2.8.0",
"version": "2.9.0",
"sideEffects": false,
"license": "AGPL-3.0",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-sdk",
"version": "2.8.0",
"version": "2.9.0",
"sideEffects": false,
"bin": {
"twenty": "dist/cli.cjs"
@@ -7,4 +7,4 @@
* |___/
*/
export const TWENTY_CURRENT_VERSION = '2.8.0' as const;
export const TWENTY_CURRENT_VERSION = '2.9.0' as const;
@@ -7,4 +7,6 @@
* |___/
*/
export const TWENTY_NEXT_VERSIONS = ['2.9.0'] as const;
export const TWENTY_NEXT_VERSIONS = [
'2.10.0',
] as const;
@@ -19,4 +19,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [
'2.5.0',
'2.6.0',
'2.7.0',
'2.8.0',
] as const;