Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to IDEA 2023.3.5 #1002

Merged
merged 1 commit into from Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yaml
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [2023.1.3, 2023.2.5, 2023.3.4]
version: [2023.1.3, 2023.2.5, 2023.3.5]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion build-all.sh
@@ -1,5 +1,5 @@
#!/bin/bash

for v in "2023.1.3" "2023.2.5" "2023.3.4"; do
for v in "2023.1.3" "2023.2.5" "2023.3.5"; do
./build.sh $v
done
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -2,5 +2,5 @@ camelVersion = 4.4.0
camelQuarkusVersion = 3.8.0
camelKameletVersion = 4.4.0
camelKarafVersion = 3.22.0
ideaVersion=2023.3.4
ideaVersion=2023.3.5
mavenResolverVersion=1.9.18
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -99,7 +99,7 @@ Importing the project into IntelliJ as plug-in only require you choose ìmport f

#### <a name="runningwithpreviousversion"></a>Running the plug-in with a previous versions of IDEA

The plugin is tested with `IDEA 2023.3.4` or newer, but if you want to try with an older version you can follow this guide
The plugin is tested with `IDEA 2023.3.5` or newer, but if you want to try with an older version you can follow this guide

> - Follow the guide [build from source](#buildingfromsource)
> - Change the attribute `<idea-version since-build="231"/>` in `camel-idea-plugin/src/main/resources/META-INF/plugin.xml` to match the version. please see [document](http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html) for build number description
Expand Down