Skip to content

Commit 185eeec

Browse files
committed
Release v1.14.0-rc.1
1 parent 2ab108d commit 185eeec

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ protocol, giving developers more control over the struct representation.
241241
See the updated documentation for `Inspect` for a general rundown on
242242
the approaches and options available.
243243

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

246246
### 1. Enhancements
247247

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

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.0-rc.0
1+
1.14.0-rc.1

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.14.0-rc.0
4+
ELIXIR_VERSION=1.14.0-rc.1
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
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
22

3-
set ELIXIR_VERSION=1.14.0-rc.0
3+
set ELIXIR_VERSION=1.14.0-rc.1
44

55
setlocal enabledelayedexpansion
66
if ""%1""=="""" if ""%2""=="""" goto documentation

0 commit comments

Comments
 (0)