Skip to content

Commit cc03382

Browse files
author
José Valim
committed
Merge pull request #2160 from mururu/otp-version-scheme
Fix version scheme for Erlang/OTP
2 parents 238eda2 + 09e7dbf commit cc03382

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* [IEx] Allow prompt configuration with the `:prompt` option
1313
* [Kernel] Support `ERL_PATH` in `bin/elixir`
1414
* [Kernel] Support interpolation in keyword syntax
15-
* [Map] Add a Map module and support R17 maps and structs
15+
* [Map] Add a Map module and support 17.0 maps and structs
1616
* [Mix] Add dependency option `:only` to specify the dependency environment. `mix deps.get` and `mix deps.update` works accross all environment unless `--only` is specified
1717
* [Mix] Add `Mix.Shell.prompt/1`
1818
* [Mix] Ensure the project is compiled in case Mix' CLI cannot find a task

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If Elixir fails to build (specifically when pulling in a new version via git), b
1616

1717
If tests pass, you are ready to move on to the [Getting Started guide][1] or to try Interactive Elixir by running: `bin/iex` in your terminal.
1818

19-
However, if tests fail, it is likely you have an outdated Erlang version (Elixir requires Erlang R17 or later). You can check your Erlang version by calling `erl` in the command line. You will see some information as follows:
19+
However, if tests fail, it is likely you have an outdated Erlang version (Elixir requires Erlang 17.0 or later). You can check your Erlang version by calling `erl` in the command line. You will see some information as follows:
2020

2121
Erlang/OTP 17 [RELEASE CANDIDATE 1] [erts-6.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]
2222

lib/iex/lib/iex.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ defmodule IEx do
144144
results in
145145
146146
$ iex
147-
Erlang R16B [...]
147+
Erlang 17 [...]
148148
149149
hello world
150150
Interactive Elixir - press Ctrl+C to exit (type h() ENTER for help)
@@ -172,7 +172,7 @@ defmodule IEx do
172172
### now run the shell ###
173173
174174
$ iex
175-
Erlang R16B (erts-5.10.1) [...]
175+
Erlang 17 (erts-5.10.1) [...]
176176
177177
Interactive Elixir - press Ctrl+C to exit (type h() ENTER for help)
178178
iex(1)> [1, 2, 3, 4, 5]

0 commit comments

Comments
 (0)