Skip to content

Commit

Permalink
Release v1.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jul 6, 2024
1 parent e254e7e commit 47abe2d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,20 @@ 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.2 (2024-07-06)

### 1. Bug fixes

#### Logger

* [Logger.Translator] Fix logger crash when `:gen_statem`'s `format_status/2` returns non-tuple

#### Mix

* [mix deps.get] Fix regression when fetching a git repository with a `:ref`
* [mix release] Validate `RELEASE_MODE` and set ERRORLEVEL on `.bat` scripts
* [mix release] Fix invalid example in code comment inside the generated vm.args.eex

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

### 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.1
1.17.2
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.1
ELIXIR_VERSION=1.17.2

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.1
set ELIXIR_VERSION=1.17.2

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

0 comments on commit 47abe2d

Please sign in to comment.