Skip to content

Commit

Permalink
Support 233 (2023.3 release)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuataylor authored and KronicDeth committed Dec 8, 2023
1 parent d3a8195 commit 876b770
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
ideaVersion: [ "2023.2" ]
ideaVersion: [ "2023.2", "2023.3" ]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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"
}

Expand Down Expand Up @@ -70,7 +70,7 @@ allprojects {
pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html"))

sinceBuild = "232.8660.143"
untilBuild = "232.*"
untilBuild = "233.*"
}

publishPlugin {
Expand All @@ -82,7 +82,7 @@ allprojects {
}

runPluginVerifier {
ideVersions = ["2023.2"]
ideVersions = ["2023.2", "2023.3"]
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 9 additions & 1 deletion resources/META-INF/changelog.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<body>
<h1>v16.0.1</h1>
<h1>v16.1.0</h1>
<ul>
<li>
<p>Bug Fixes</p>
Expand All @@ -14,6 +14,13 @@ <h1>v16.0.1</h1>
</li>
</ul>
</li>
<li>
<li>
<p>Enhancements</p>
<ul>
<li>Support 2023.3 IDEs</li>
</ul>
</li>
</ul>
<h1>v16.0.0</h1>
<ul>
Expand All @@ -27,6 +34,7 @@ <h1>v16.0.0</h1>
<p>Enhancements</p>
<ul>
<li>Support 2023.2 IDEs.</li>
<li>Support 2023.3 IDEs</li>
</ul>
</li>
</ul>
Expand Down

0 comments on commit 876b770

Please sign in to comment.