Skip to content

Commit 47abe2d

Browse files
committed
Release v1.17.2
1 parent e254e7e commit 47abe2d

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,20 @@ 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.2 (2024-07-06)
74+
75+
### 1. Bug fixes
76+
77+
#### Logger
78+
79+
* [Logger.Translator] Fix logger crash when `:gen_statem`'s `format_status/2` returns non-tuple
80+
81+
#### Mix
82+
83+
* [mix deps.get] Fix regression when fetching a git repository with a `:ref`
84+
* [mix release] Validate `RELEASE_MODE` and set ERRORLEVEL on `.bat` scripts
85+
* [mix release] Fix invalid example in code comment inside the generated vm.args.eex
86+
7387
## v1.17.1 (2024-06-18)
7488

7589
### 1. Enhancements

VERSION

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

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.1
4+
ELIXIR_VERSION=1.17.2
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.1
3+
set ELIXIR_VERSION=1.17.2
44

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

0 commit comments

Comments
 (0)