From aa4980f83eabcfec9a56a265e2a9f8da414638a5 Mon Sep 17 00:00:00 2001 From: Sebastiano Poggi Date: Tue, 26 Mar 2024 17:51:40 +0000 Subject: [PATCH] Stop publishing/checking 232 branch, it's now deprecated --- .github/workflows/check-ide-version.yml | 1 - .github/workflows/publish.yml | 5 ++--- README.md | 12 ++++++------ 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/check-ide-version.yml b/.github/workflows/check-ide-version.yml index fd28636362..5ca8896c59 100644 --- a/.github/workflows/check-ide-version.yml +++ b/.github/workflows/check-ide-version.yml @@ -14,7 +14,6 @@ jobs: fail-fast: false matrix: branch-name: - - releases/232 - releases/233 - main diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d509d8834e..b030e0fefc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ on: jobs: publish-current: - name: Publish standalone & current-IJP-version bridge + name: Publish current IJP version (main) runs-on: ubuntu-latest steps: @@ -32,13 +32,12 @@ jobs: MAVEN_SPACE_PASSWORD: ${{secrets.MAVEN_SPACE_PASSWORD}} publish-older: - name: Publish older-IJP-version bridge(s) + name: Publish older IJP version(s) runs-on: ubuntu-latest strategy: matrix: branch-name: - - releases/232 - releases/233 steps: diff --git a/README.md b/README.md index 293d89b507..f2948c1531 100644 --- a/README.md +++ b/README.md @@ -287,12 +287,12 @@ To use Jewel in the IntelliJ Platform, you should depend on the appropriate `jew will bring in the necessary transitive dependencies. These are the currently supported versions of the IntelliJ Platform and the branch on which the corresponding bridge code lives: -| IntelliJ Platform version(s) | Branch to use | - |------------------------------|-------------------| -| 2024.1 (EAP 3+) | `main` | -| 2023.3 | `releases/233` | -| 2023.2 | `releases/232` | -| 2023.1 or older | **Not supported** | +| IntelliJ Platform version(s) | Branch to use | + |------------------------------|-------------------------| +| 2024.1 (EAP 3+) | `main` | +| 2023.3 | `releases/233` | +| 2023.2 (**deprecated**) | `archived-releases/232` | +| 2023.1 or older | **Not supported** | For an example on how to set up an IntelliJ Plugin, you can refer to the [`ide-plugin` sample](samples/ide-plugin/build.gradle.kts).