Skip to content

Commit e0658bb

Browse files
committed
Release v1.16.1
1 parent cf8c28c commit e0658bb

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,28 @@ Another [ExDoc](https://github.com/elixir-lang/ex_doc) feature we have incorpora
7878

7979
Finally, we have started enriching our documentation with [Mermaid.js](https://mermaid.js.org/) diagrams. You can find examples in the [GenServer](https://hexdocs.pm/elixir/main/GenServer.html) and [Supervisor](https://hexdocs.pm/elixir/main/Supervisor.html) docs.
8080

81+
## v1.16.1 (2024-01-31)
82+
83+
### 1. Bug fixes
84+
85+
#### Elixir
86+
87+
* [Code] Fix `Code.quoted_to_algebra/2` for operator with :do key as operand
88+
* [Kernel.ParallelCompiler] Do not crash parallel compiler when it receives diagnostics from additional code evaluation
89+
* [Kernel.ParallelCompiler] Always log errors at the end of compilation
90+
* [String] Fix `String.capitalize/1` with a single codepoint
91+
92+
#### IEx
93+
94+
* [IEx] Fix autocompletion of function signatures on Erlang/OTP 26
95+
* [IEx] Do not assume `$HOME` is set
96+
97+
#### Mix
98+
99+
* [mix deps.compile] Handle compilation of rebar3 dependencies when rebar3 is on a path with spaces on Unix
100+
* [mix test] Properly resolve relative paths when running tests from individual files
101+
* [mix test] Properly resolve Windows paths when running tests from individual files
102+
81103
## v1.16.0 (2023-12-22)
82104

83105
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.0
1+
1.16.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.16.0
4+
ELIXIR_VERSION=1.16.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.16.0
3+
set ELIXIR_VERSION=1.16.1
44

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

0 commit comments

Comments
 (0)