Skip to content

Commit 6bfb95a

Browse files
committedJun 18, 2024
Release v1.17.1
1 parent d539770 commit 6bfb95a

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed
 

‎CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,29 @@ Finally, a new `Kernel.to_timeout/1` function has been added, which helps develo
7070
Process.send_after(pid, :wake_up, to_timeout(hour: 1))
7171
```
7272

73+
## v1.17.1 (2024-06-18)
74+
75+
### 1. Enhancements
76+
77+
#### Mix
78+
79+
* [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
80+
81+
### 2. Bug fixes
82+
83+
#### EEx
84+
85+
* [EEx] Do not warn for assignment with blocks in EEx
86+
87+
#### Elixir
88+
89+
* [Kernel] Fix bug when using pinned variables inside `with`'s `else` patterns
90+
* [Kernel] Fix Dialyzer error when with else clause is calling a `no_return` function
91+
92+
#### ExUnit
93+
94+
* [ExUnit] Do not alternative sync/async suites on `--repeat-until-failure`
95+
7396
## v1.17.0 (2024-06-12)
7497

7598
### 1. Enhancements

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.17.0
1+
1.17.1

‎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.17.0
4+
ELIXIR_VERSION=1.17.1
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.17.0
3+
set ELIXIR_VERSION=1.17.1
44

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

0 commit comments

Comments
 (0)
Failed to load comments.