Skip to content

Commit

Permalink
Release v1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jun 18, 2024
1 parent d539770 commit 6bfb95a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,29 @@ Finally, a new `Kernel.to_timeout/1` function has been added, which helps develo
Process.send_after(pid, :wake_up, to_timeout(hour: 1))
```

## v1.17.1 (2024-06-18)

### 1. Enhancements

#### Mix

* [mix compile.elixir] Do not run fixpoint computation on runtime dependencies. This should considerably improve compilation times for large projects when changing only one or two files

### 2. Bug fixes

#### EEx

* [EEx] Do not warn for assignment with blocks in EEx

#### Elixir

* [Kernel] Fix bug when using pinned variables inside `with`'s `else` patterns
* [Kernel] Fix Dialyzer error when with else clause is calling a `no_return` function

#### ExUnit

* [ExUnit] Do not alternative sync/async suites on `--repeat-until-failure`

## v1.17.0 (2024-06-12)

### 1. Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.17.0
1.17.1
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.17.0
ELIXIR_VERSION=1.17.1

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.17.0
set ELIXIR_VERSION=1.17.1

if ""%1""=="""" if ""%2""=="""" goto documentation
if /I ""%1""==""--help"" if ""%2""=="""" goto documentation
Expand Down

0 comments on commit 6bfb95a

Please sign in to comment.