chore: bump version to 2.10.0 (#21218)
## 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:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "create-twenty-app",
|
"name": "create-twenty-app",
|
||||||
"version": "2.9.0",
|
"version": "2.10.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,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "twenty-client-sdk",
|
"name": "twenty-client-sdk",
|
||||||
"version": "2.9.0",
|
"version": "2.10.0",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "twenty-sdk",
|
"name": "twenty-sdk",
|
||||||
"version": "2.9.0",
|
"version": "2.10.0",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"bin": {
|
"bin": {
|
||||||
"twenty": "dist/cli.cjs"
|
"twenty": "dist/cli.cjs"
|
||||||
|
|||||||
+1
-1
@@ -7,4 +7,4 @@
|
|||||||
* |___/
|
* |___/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export const TWENTY_CURRENT_VERSION = '2.9.0' as const;
|
export const TWENTY_CURRENT_VERSION = '2.10.0' as const;
|
||||||
|
|||||||
+1
-1
@@ -8,5 +8,5 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export const TWENTY_NEXT_VERSIONS = [
|
export const TWENTY_NEXT_VERSIONS = [
|
||||||
'2.10.0',
|
'2.11.0',
|
||||||
] as const;
|
] as const;
|
||||||
|
|||||||
+1
@@ -20,4 +20,5 @@ export const TWENTY_PREVIOUS_VERSIONS = [
|
|||||||
'2.6.0',
|
'2.6.0',
|
||||||
'2.7.0',
|
'2.7.0',
|
||||||
'2.8.0',
|
'2.8.0',
|
||||||
|
'2.9.0',
|
||||||
] as const;
|
] as const;
|
||||||
|
|||||||
Reference in New Issue
Block a user