Skip to content

Commit 66c5908

Browse files
committed
Release v1.18.0-rc.0
1 parent 31d8da6 commit 66c5908

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ If you have a struct, you can derive the implementation of the `JSON.Encoder`
182182
by specifying which fields should be encoded to JSON:
183183

184184
```elixir
185-
@derive {JSON.Encoder, only: [....]}
185+
@derive {JSON.Encoder, only: [...]}
186186
defstruct ...
187187
```
188188

@@ -219,7 +219,7 @@ You may also prefer to write using guards:
219219

220220
def foo(x, y, z) when x == y and y == z
221221

222-
## v1.18.0-dev
222+
## v1.18.0-rc.0 (2024-12-10)
223223

224224
### 1. Enhancements
225225

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.0-dev
1+
1.18.0-rc.0

bin/elixir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
ELIXIR_VERSION=1.18.0-dev
4+
ELIXIR_VERSION=1.18.0-rc.0
55

66
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
77
cat <<USAGE >&2

bin/elixir.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22

3-
set ELIXIR_VERSION=1.18.0-dev
3+
set ELIXIR_VERSION=1.18.0-rc.0
44

55
if ""%1""=="""" if ""%2""=="""" goto documentation
66
if /I ""%1""==""--help"" if ""%2""=="""" goto documentation

bin/elixir.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env pwsh
22

3-
$ELIXIR_VERSION = "1.18.0-dev"
3+
$ELIXIR_VERSION = "1.18.0-rc.0"
44

55
$scriptPath = Split-Path -Parent $PSCommandPath
66
$erlExec = "erl"

lib/elixir/pages/references/compatibility-and-deprecations.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Erlang/OTP versioning is independent from the versioning of Elixir. Erlang relea
4242

4343
Elixir version | Supported Erlang/OTP versions
4444
:------------- | :-------------------------------
45+
1.18 | 25 - 27
4546
1.17 | 25 - 27
4647
1.16 | 24 - 26
4748
1.15 | 24 - 26

0 commit comments

Comments
 (0)