diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e117763a..ede57a2c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,6 @@ jobs: uses: ./.github/workflows/tests.yml with: version: 2.0.x - last_published_version: 2.0.x-dev + last_published_version: 2.0.0 use_default_github_ref: true secrets: inherit diff --git a/.github/workflows/deploy-2.0.x.yml b/.github/workflows/deploy-2.0.x.yml index 14a103be0..005921224 100644 --- a/.github/workflows/deploy-2.0.x.yml +++ b/.github/workflows/deploy-2.0.x.yml @@ -18,7 +18,7 @@ jobs: uses: ./.github/workflows/tests.yml with: version: 2.0.x - last_published_version: 2.0.x-dev + last_published_version: 2.0.0 secrets: COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} PACKAGIST_URL: ${{ secrets.PACKAGIST_URL }} @@ -32,7 +32,7 @@ jobs: uses: ./.github/workflows/deploy-int.yml with: version: 2.0.x - last_published_version: 2.0.x-dev + last_published_version: 2.0.0 secrets: AWS_DEPLOY_KEY: ${{ secrets.AWS_DEPLOY_KEY }} AWS_HOSTNAME: ${{ secrets.AWS_HOSTNAME_STABLE }} diff --git a/Makefile b/Makefile index 03aa3177a..007728a9c 100644 --- a/Makefile +++ b/Makefile @@ -85,8 +85,8 @@ init-dev-env: .env ## Initialize current environment with dev repositories $(MAKE) start $(MAKE) switch-dev-env -switch-dev-env: ## Switch current environment with dev repositories on a composer version, pass the parameter "v=" to set the composer version, example: make switch-dev-env v=1.0.1 - @$(eval v ?= 2.0.x-dev) +switch-dev-env: ## Switch current environment with dev repositories on a composer version, pass the parameter "v=" to set the composer version, example: make switch-dev-env v=2.0.0 + @$(eval v ?= 2.0.0) $(DOCKER_COMP) up -d --wait php # Wait php container to be ready $(COMPOSER) config repositories.gally-standard '{ "type": "path", "url": "./packages/gally-standard", "options": { "versions": { "gally/gally-standard": "$(v)"}} }' $(COMPOSER) config repositories.gally-premium '{ "type": "path", "url": "./packages/gally-premium", "options": { "versions": { "gally/gally-premium": "$(v)"}} }' diff --git a/api/composer.json b/api/composer.json index 1b735c0a3..5ce751631 100644 --- a/api/composer.json +++ b/api/composer.json @@ -11,7 +11,7 @@ "doctrine/doctrine-bundle": "^2.7", "doctrine/doctrine-migrations-bundle": "^3.2", "doctrine/orm": "^2.12", - "gally/gally-standard": "2.0.x-dev", + "gally/gally-standard": "2.0.0", "hautelook/alice-bundle": "2.11.0", "lexik/jwt-authentication-bundle": "^2.14", "nelmio/cors-bundle": "^2.2", diff --git a/api/composer.lock b/api/composer.lock index bb757d424..6a97309f8 100644 --- a/api/composer.lock +++ b/api/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f5fbcb6850d1f4ce683e765ea0a90800", + "content-hash": "cfa89f8fad19bdc6239e6eaf65864334", "packages": [ { "name": "api-platform/core", @@ -2053,7 +2053,7 @@ }, { "name": "gally/gally-standard", - "version": "2.0.x-dev", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/Elastic-Suite/gally-standard.git", @@ -2090,7 +2090,6 @@ "phpunit/phpunit": "^9.5", "symfony/phpunit-bridge": "6.0.*" }, - "default-branch": true, "type": "symfony-bundle", "extra": { "symfony": { @@ -2131,7 +2130,7 @@ ], "support": { "issues": "https://github.com/Elastic-Suite/gally-standard/issues", - "source": "https://github.com/Elastic-Suite/gally-standard/tree/2.0.x" + "source": "https://github.com/Elastic-Suite/gally-standard/tree/2.0.0" }, "time": "2024-11-27T09:06:05+00:00" }, @@ -12765,9 +12764,7 @@ ], "aliases": [], "minimum-stability": "stable", - "stability-flags": { - "gally/gally-standard": 20 - }, + "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, "platform": { diff --git a/front/example-app/package.json b/front/example-app/package.json index 79c19300f..58731ea70 100644 --- a/front/example-app/package.json +++ b/front/example-app/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@elastic-suite/gally-admin-shared": "2.0.0-alpha.0", + "@elastic-suite/gally-admin-shared": "2.0.0", "@emotion/react": "11.10.4", "@emotion/styled": "11.10.4", "@mui/icons-material": "5.10.6", diff --git a/front/pwa/package.json b/front/pwa/package.json index 303ae281a..7ade05491 100644 --- a/front/pwa/package.json +++ b/front/pwa/package.json @@ -20,8 +20,8 @@ "prepare": "cd public && ln -fsT ../../node_modules/@elastic-suite/gally-admin-components/public/locales/ locales && ln -fsT ../../node_modules/@elastic-suite/gally-admin-components/public/images/ images" }, "dependencies": { - "@elastic-suite/gally-admin-components": "2.0.0-alpha.0", - "@elastic-suite/gally-admin-shared": "2.0.0-alpha.0", + "@elastic-suite/gally-admin-components": "2.0.0", + "@elastic-suite/gally-admin-shared": "2.0.0", "@emotion/react": "11.10.4", "@emotion/styled": "11.10.4", "@mui/material": "5.10.5",