Skip to content

Commit 6730d66

Browse files
committed
Release v1.14.3
1 parent fb4ccfa commit 6730d66

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,37 @@ 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.3 (2023-01-14)
245+
246+
### 1. Enhancements
247+
248+
#### Elixir
249+
250+
* [Kernel] Speed up loading of runtime modules in the parallel compiler
251+
* [Range] Optimize range membership implementation
252+
253+
#### ExUnit
254+
255+
* [ExUnit] Return values from running doctests and make their order consistent
256+
257+
### 2. Bug fixes
258+
259+
#### Elixir
260+
261+
* [Calendar] Fix handling of negative years in `Calendar.strftime/2`
262+
* [Exception] Improve blaming of FunctionClauseError with `is_struct/2` guards
263+
* [Kernel] Fix invalid variable scoping in `defguard` expansion
264+
* [Kernel] Do not warn on captured underscored vars from `defmodule`
265+
* [Kernel] Do not crash for missing line info on type warnings
266+
* [Macro] Fix `Macro.to_string/1` for large negative integers
267+
* [Macro] Properly type and escape expansion of `__ENV__` in macros
268+
* [Path] Make sure `Path.wildcard/2` expands `..` symlinks accordingly
269+
* [Range] Address corner cases in `Range.disjoint?/2` implementation
270+
271+
#### ExUnit
272+
273+
* [ExUnit.DocTest] Remove unnecessary literal quotes from error message on reports
274+
244275
## v1.14.2 (2022-11-11)
245276

246277
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.2
1+
1.14.3

bin/elixir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
ELIXIR_VERSION=1.14.2
4+
ELIXIR_VERSION=1.14.3
55

66
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
77
cat <<USAGE >&2

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
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.2
3+
set ELIXIR_VERSION=1.14.3
44

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

0 commit comments

Comments
 (0)