chore: bump version to 2.28.0 (#23730)

## 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

<!-- This is an auto-generated description by cubic. -->
<a
href="https://cubic.dev/pr/twentyhq/twenty/pull/23730?utm_source=github"
target="_blank" rel="noopener noreferrer"
data-no-image-dialog="true"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source
media="(prefers-color-scheme: light)"
srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img
alt="Review in cubic"
src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a>
<!-- End of auto-generated description by cubic. -->

Co-authored-by: Github Action Deploy <github-action-deploy@twenty.com>
This commit is contained in:
twenty-pr[bot]
2026-08-04 11:47:09 +02:00
committed by GitHub
parent a26b507361
commit 3ab6bb7915
6 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "create-twenty-app", "name": "create-twenty-app",
"version": "2.27.0", "version": "2.28.0",
"description": "Command-line interface to create Twenty application", "description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs", "main": "dist/cli.cjs",
"bin": "dist/cli.cjs", "bin": "dist/cli.cjs",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "twenty-client-sdk", "name": "twenty-client-sdk",
"version": "2.27.0", "version": "2.28.0",
"sideEffects": false, "sideEffects": false,
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "twenty-sdk", "name": "twenty-sdk",
"version": "2.27.0", "version": "2.28.0",
"sideEffects": false, "sideEffects": false,
"bin": { "bin": {
"twenty": "dist/cli.cjs" "twenty": "dist/cli.cjs"
@@ -7,4 +7,4 @@
* |___/ * |___/
*/ */
export const TWENTY_CURRENT_VERSION = '2.27.0' as const; export const TWENTY_CURRENT_VERSION = '2.28.0' as const;
@@ -8,5 +8,5 @@
*/ */
export const TWENTY_NEXT_VERSIONS = [ export const TWENTY_NEXT_VERSIONS = [
'2.28.0', '2.29.0',
] as const; ] as const;
@@ -38,4 +38,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [
'2.24.0', '2.24.0',
'2.25.0', '2.25.0',
'2.26.0', '2.26.0',
'2.27.0',
] as const; ] as const;