Skip to content

Commit

Permalink
Release v1.14.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Aug 15, 2022
1 parent 2ab108d commit 185eeec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ protocol, giving developers more control over the struct representation.
See the updated documentation for `Inspect` for a general rundown on
the approaches and options available.

## v1.14.0-rc.1 (2022-08-13)
## v1.14.0-rc.1 (2022-08-15)

### 1. Enhancements

Expand All @@ -260,6 +260,7 @@ the approaches and options available.
* [Enum] Fix usage of range with `steps != 1` in a few functions (regression)
* [Kernel] Fix usage of range with `steps != 1` on `binary_slice/2` (regression)
* [Kernel] Recursively expand pipelines on right-hand side of `|>` (regression)
* [Kernel] Fix equality in guards for dynamic ranges without steps
* [Module] Fix loop while unifying type variables
* [System] Raise non-generic exception on missing env in `System.fetch_env!/1` to mirror map operations

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

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 @@
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)

set ELIXIR_VERSION=1.14.0-rc.0
set ELIXIR_VERSION=1.14.0-rc.1

setlocal enabledelayedexpansion
if ""%1""=="""" if ""%2""=="""" goto documentation
Expand Down

0 comments on commit 185eeec

Please sign in to comment.