Skip to content

Commit

Permalink
Release v1.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Sep 18, 2024
1 parent 86ec46a commit 78f63d0
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,24 @@ 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.3 (2024-09-18)

### 1. Bug fixes

#### Elixir

* [Duration] Fix parsing of fractional durations with non-positive seconds
* [Kernel] Do not attempt to group module warnings when they have a large context

#### IEx

* [IEx.Helpers] Properly reconsolidate protocols on `recompile`

#### Mix

* [mix compile.elixir] Do not verify modules twice
* [mix xref] Respect the `--label` option on stats and cycles

## v1.17.2 (2024-07-06)

### 1. Bug fixes
Expand Down
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

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

6. Once GitHub actions completes, generate a new tag, and push it
5. Once GitHub actions completes, generate a new tag, and push it

7. Wait until GitHub Actions publish artifacts to the draft release
6. Wait until GitHub Actions publish artifacts to the draft release

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

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

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

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

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.2
set ELIXIR_VERSION=1.17.3

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

0 comments on commit 78f63d0

Please sign in to comment.