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

bump devtools elixer to 1.14.5, and erlang/OTP 24 to latest 24.3.4.16 #3564

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
otp-version: 24.3.4.6
elixir-version: 1.13.0
otp-version: 24.3.4.16
elixir-version: 1.14.5
- name: Export OTP_RELEASE
run: echo "OTP_RELEASE=24.3.4.6" >> $GITHUB_ENV
run: echo "OTP_RELEASE=24.3.4.16" >> $GITHUB_ENV
- name: Export ERLANG_SDK_HOME
run: echo "ERLANG_SDK_HOME=`erl -eval 'io:format("~s", [code:root_dir()]).' -noshell -run init stop`" >> $GITHUB_ENV
- name: Grant execute permission for gradlew
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
otp-version: 24.3.4.6
elixir-version: 1.13.0
otp-version: 24.3.4.16
elixir-version: 1.14.5
- name: Export OTP_RELEASE
run: echo "OTP_RELEASE=24.3.4.6" >> $GITHUB_ENV
run: echo "OTP_RELEASE=24.3.4.16" >> $GITHUB_ENV
- name: Export ERLANG_SDK_HOME
run: echo "ERLANG_SDK_HOME=`erl -eval 'io:format("~s", [code:root_dir()]).' -noshell -run init stop`" >> $GITHUB_ENV
- name: Grant execute permission for gradlew
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elixir 1.13.4-otp-24
erlang 24.3.4.6
elixir 1.14.5-otp-24
erlang 24.3.4.16
java openjdk-17.0.2
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
* Add the correct ERL and elixir arguments for starting IEx depending on the version of Elixir SDK.
* [#3563](https://github.com/KronicDeth/intellij-elixir/pull/3563) - [@ashleysommer](https://github.com/ashleysommer)
* Bundle latest OtpErlang.jar from JInterface v1.14 for OTP v26.
* [#3564](https://github.com/KronicDeth/intellij-elixir/pull/3564) - [@ashleysommer](https://github.com/ashleysommer)
* Bump devtools
* Elixir to 1.14.5
* Erlang/OTP 24 to 24.3.4.16

## v17.0.0

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Available idea versions:
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
baseVersion=17.0.1
baseVersion=18.0.0
ideaVersion=2024.1
# MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer
javaVersion=17
javaTargetVersion=17
sources=true
elixirVersion=1.13.4
elixirVersion=1.14.5
publishChannels=canary
org.gradle.jvmargs=-Xmx4096m
7 changes: 7 additions & 0 deletions resources/META-INF/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ <h1>v17.0.1</h1>
<li>Render code snippets that are not links.</li>
<li>Add the correct ERL and elixir arguments for starting IEx depending on the version of Elixir SDK.</li>
<li>Bundle latest OtpErlang.jar from JInterface v1.14 for OTP v26.</li>
<li>
Bump devtools
<ul>
<li>Elixir to 1.14.5</li>
<li>Erlang/OTP 24 to 24.3.4.16</li>
</ul>
</li>
</ul>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ public void testEexSmartEngine() {
assertParsed("lib/eex/lib/eex/smart_engine.ex", Parse.CORRECT);
}

public void testEexTokenizer() {
assertParsed("lib/eex/lib/eex/tokenizer.ex", Parse.CORRECT);
}

public void testAccess() {
assertParsed("lib/elixir/lib/access.ex", Parse.CORRECT);
Expand Down
Loading