Skip to content

Commit ea334dc

Browse files
ashleysommerKronicDeth
authored andcommitted
bump devtools elixer to 1.14.5, and erlang/OTP 24 to latest 24.3.4.16
1 parent 73ad91b commit ea334dc

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- name: Set up Elixir
1919
uses: erlef/setup-beam@v1
2020
with:
21-
otp-version: 24.3.4.6
22-
elixir-version: 1.13.0
21+
otp-version: 24.3.4.16
22+
elixir-version: 1.14.5
2323
- name: Export OTP_RELEASE
24-
run: echo "OTP_RELEASE=24.3.4.6" >> $GITHUB_ENV
24+
run: echo "OTP_RELEASE=24.3.4.16" >> $GITHUB_ENV
2525
- name: Export ERLANG_SDK_HOME
2626
run: echo "ERLANG_SDK_HOME=`erl -eval 'io:format("~s", [code:root_dir()]).' -noshell -run init stop`" >> $GITHUB_ENV
2727
- name: Grant execute permission for gradlew

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Set up Elixir
2020
uses: erlef/setup-beam@v1
2121
with:
22-
otp-version: 24.3.4.6
23-
elixir-version: 1.13.0
22+
otp-version: 24.3.4.16
23+
elixir-version: 1.14.5
2424
- name: Export OTP_RELEASE
25-
run: echo "OTP_RELEASE=24.3.4.6" >> $GITHUB_ENV
25+
run: echo "OTP_RELEASE=24.3.4.16" >> $GITHUB_ENV
2626
- name: Export ERLANG_SDK_HOME
2727
run: echo "ERLANG_SDK_HOME=`erl -eval 'io:format("~s", [code:root_dir()]).' -noshell -run init stop`" >> $GITHUB_ENV
2828
- name: Grant execute permission for gradlew

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
elixir 1.13.4-otp-24
2-
erlang 24.3.4.6
1+
elixir 1.14.5-otp-24
2+
erlang 24.3.4.16
33
java openjdk-17.0.2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
* Add the correct ERL and elixir arguments for starting IEx depending on the version of Elixir SDK.
1010
* [#3563](https://github.com/KronicDeth/intellij-elixir/pull/3563) - [@ashleysommer](https://github.com/ashleysommer)
1111
* Bundle latest OtpErlang.jar from JInterface v1.14 for OTP v26.
12+
* [#3564](https://github.com/KronicDeth/intellij-elixir/pull/3564) - [@ashleysommer](https://github.com/ashleysommer)
13+
* Bump devtools
14+
* Elixir to 1.14.5
15+
* Erlang/OTP 24 to 24.3.4.16
1216

1317
## v17.0.0
1418

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ ideaVersion=2023.3
77
javaVersion=17
88
javaTargetVersion=17
99
sources=true
10-
elixirVersion=1.13.4
10+
elixirVersion=1.14.5
1111
publishChannels=canary
1212
org.gradle.jvmargs=-Xmx4096m

resources/META-INF/changelog.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ <h1>v17.0.1</h1>
88
<li>Render code snippets that are not links.</li>
99
<li>Add the correct ERL and elixir arguments for starting IEx depending on the version of Elixir SDK.</li>
1010
<li>Bundle latest OtpErlang.jar from JInterface v1.14 for OTP v26.</li>
11+
<li>
12+
Bump devtools
13+
<ul>
14+
<li>Elixir to 1.14.5</li>
15+
<li>Erlang/OTP 24 to 24.3.4.16</li>
16+
</ul>
17+
</li>
1118
</ul>
1219
</li>
1320
</ul>

tests/org/elixir_lang/parser_definition/ElixirLangElixirParsingTestCase.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ public void testEexSmartEngine() {
5050
assertParsed("lib/eex/lib/eex/smart_engine.ex", Parse.CORRECT);
5151
}
5252

53-
public void testEexTokenizer() {
54-
assertParsed("lib/eex/lib/eex/tokenizer.ex", Parse.CORRECT);
55-
}
5653

5754
public void testAccess() {
5855
assertParsed("lib/elixir/lib/access.ex", Parse.CORRECT);

0 commit comments

Comments
 (0)