Skip to content

Commit 78f63d0

Browse files
committed
Release v1.17.3
1 parent 86ec46a commit 78f63d0

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,24 @@ 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.3 (2024-09-18)
74+
75+
### 1. Bug fixes
76+
77+
#### Elixir
78+
79+
* [Duration] Fix parsing of fractional durations with non-positive seconds
80+
* [Kernel] Do not attempt to group module warnings when they have a large context
81+
82+
#### IEx
83+
84+
* [IEx.Helpers] Properly reconsolidate protocols on `recompile`
85+
86+
#### Mix
87+
88+
* [mix compile.elixir] Do not verify modules twice
89+
* [mix xref] Respect the `--label` option on stats and cycles
90+
7391
## v1.17.2 (2024-07-06)
7492

7593
### 1. Bug fixes

RELEASE.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
4. Commit changes above with title "Release vVERSION" and push it
1212

13-
6. Once GitHub actions completes, generate a new tag, and push it
13+
5. Once GitHub actions completes, generate a new tag, and push it
1414

15-
7. Wait until GitHub Actions publish artifacts to the draft release
15+
6. Wait until GitHub Actions publish artifacts to the draft release
1616

17-
8. Copy the relevant bits from /CHANGELOG.md to the GitHub release and publish it (link to the announcement if there is one)
17+
7. Copy the relevant bits from /CHANGELOG.md to the GitHub release and publish it (link to the announcement if there is one)
1818

19-
9. Update `_data/elixir-versions.yml` (except for RCs) in `elixir-lang/elixir-lang.github.com`
19+
8. Update `_data/elixir-versions.yml` (except for RCs) in `elixir-lang/elixir-lang.github.com`
2020

2121
## Creating a new vMAJOR.MINOR branch (before first rc)
2222

VERSION

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

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

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

0 commit comments

Comments
 (0)