From 876b7702e439c398f4ae2cc41647eb45d2a157ea Mon Sep 17 00:00:00 2001 From: Josh Taylor Date: Sat, 14 Oct 2023 20:49:03 +0800 Subject: [PATCH] Support 233 (2023.3 release) --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 6 +++++- build.gradle | 6 +++--- gradle.properties | 4 ++-- resources/META-INF/changelog.html | 10 +++++++++- 5 files changed, 20 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de0bdbe83..2dc816bcf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - ideaVersion: [ "2023.2" ] + ideaVersion: [ "2023.2", "2023.3" ] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 038f46d5e..8802ee80c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v16.0.1 +## v16.1.0 ### Bug Fixes * [#3431](https://github.com/KronicDeth/intellij-elixir/pull/3431) - [@KronicDeth](https://github.com/KronicDeth) @@ -9,6 +9,10 @@ * `org.elixir_lang.facets.sdks.erlang.Configurable` - "Internal Erlang SDKs" * `org.elixir_lang.facets.sdks.elixir.Configurable` - "SDKs" +### Enhancements +* [#2402](https://github.com/KronicDeth/intellij-elixir/pull/3402) - [@joshuataylor](https://github.com/joshuataylor) + * Support 2023.3 IDEs. + ## v16.0.0 ### Incompatible Changes diff --git a/build.gradle b/build.gradle index 5698eca8e..05357d37f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id "org.jetbrains.intellij" version "1.13.3" - id "org.jetbrains.kotlin.jvm" version "1.9.0" + id "org.jetbrains.kotlin.jvm" version "1.9.10" id "de.undercouch.download" version "4.1.2" } @@ -70,7 +70,7 @@ allprojects { pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html")) sinceBuild = "232.8660.143" - untilBuild = "232.*" + untilBuild = "233.*" } publishPlugin { @@ -82,7 +82,7 @@ allprojects { } runPluginVerifier { - ideVersions = ["2023.2"] + ideVersions = ["2023.2", "2023.3"] } } diff --git a/gradle.properties b/gradle.properties index 52e82f5d0..a997f6976 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ # Available idea versions: # https://www.jetbrains.com/intellij-repository/releases # https://www.jetbrains.com/intellij-repository/snapshots -baseVersion=16.0.0 -ideaVersion=2023.2 +baseVersion=16.1.0 +ideaVersion=2023.3 # MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer javaVersion=17 javaTargetVersion=17 diff --git a/resources/META-INF/changelog.html b/resources/META-INF/changelog.html index d256d7c10..2075a70b0 100644 --- a/resources/META-INF/changelog.html +++ b/resources/META-INF/changelog.html @@ -1,6 +1,6 @@ -

v16.0.1

+

v16.1.0

+
  • +
  • +

    Enhancements

    + +
  • v16.0.0