Skip to content

Commit

Permalink
bump devtools elixer to 1.14.5, and erlang/OTP 24 to latest 24.3.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer authored and KronicDeth committed May 14, 2024
1 parent 73ad91b commit ea334dc
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
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 @@ -9,6 +9,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
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ ideaVersion=2023.3
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

0 comments on commit ea334dc

Please sign in to comment.