Skip to content

Commit 0909940

Browse files
committed
Release v1.14.2
1 parent d061cb9 commit 0909940

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,40 @@ 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.2 (2022-11-11)
245+
246+
### 1. Enhancements
247+
248+
#### Elixir
249+
250+
* [Code] Add `Code.eval_quoted_with_env/4` with support for the `:prune_binding` option
251+
252+
#### ExUnit
253+
254+
* [ExUnit.Case] Allow test cases to not be registered on use
255+
* [ExUnit.DocTest] Include `:doctest` and `:doctest_line` as meta tags
256+
* [ExUnit.Formatter] Expose `ExUnit.Formatter.format_assertion_diff/4`
257+
258+
#### Mix
259+
260+
* [Mix] `Mix.install/2` accepts atoms as paths
261+
262+
### 2. Bug fixes
263+
264+
#### Elixir
265+
266+
* [Code.Formatter] Fix `size*unit` shortcut in bitstring
267+
* [Kernel] Generate unique variables for macro expansion of `defguard`
268+
* [Protocol] Expand `:for` in protocols with the appropriate env
269+
270+
#### ExUnit
271+
272+
* [ExUnit] Do not run duplicate cases on `ExUnit.run/1`
273+
274+
#### Mix
275+
276+
* [mix test] Ensure proper error message when there is no test directory
277+
244278
## v1.14.1 (2022-10-10)
245279

246280
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.1
1+
1.14.2

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

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

0 commit comments

Comments
 (0)