Skip to content

Commit

Permalink
Release v1.18.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Dec 10, 2024
1 parent 31d8da6 commit 66c5908
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ If you have a struct, you can derive the implementation of the `JSON.Encoder`
by specifying which fields should be encoded to JSON:

```elixir
@derive {JSON.Encoder, only: [....]}
@derive {JSON.Encoder, only: [...]}
defstruct ...
```

Expand Down Expand Up @@ -219,7 +219,7 @@ You may also prefer to write using guards:

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

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

### 1. Enhancements

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.18.0-dev
1.18.0-rc.0
2 changes: 1 addition & 1 deletion bin/elixir
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.18.0-dev
ELIXIR_VERSION=1.18.0-rc.0

if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
cat <<USAGE >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/elixir.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set ELIXIR_VERSION=1.18.0-dev
set ELIXIR_VERSION=1.18.0-rc.0

if ""%1""=="""" if ""%2""=="""" goto documentation
if /I ""%1""==""--help"" if ""%2""=="""" goto documentation
Expand Down
2 changes: 1 addition & 1 deletion bin/elixir.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env pwsh

$ELIXIR_VERSION = "1.18.0-dev"
$ELIXIR_VERSION = "1.18.0-rc.0"

$scriptPath = Split-Path -Parent $PSCommandPath
$erlExec = "erl"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Erlang/OTP versioning is independent from the versioning of Elixir. Erlang relea

Elixir version | Supported Erlang/OTP versions
:------------- | :-------------------------------
1.18 | 25 - 27
1.17 | 25 - 27
1.16 | 24 - 26
1.15 | 24 - 26
Expand Down

0 comments on commit 66c5908

Please sign in to comment.