Skip to content

Commit

Permalink
Release v1.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jan 31, 2024
1 parent cf8c28c commit e0658bb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Expand Up @@ -78,6 +78,28 @@ Another [ExDoc](https://github.com/elixir-lang/ex_doc) feature we have incorpora

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.

## v1.16.1 (2024-01-31)

### 1. Bug fixes

#### Elixir

* [Code] Fix `Code.quoted_to_algebra/2` for operator with :do key as operand
* [Kernel.ParallelCompiler] Do not crash parallel compiler when it receives diagnostics from additional code evaluation
* [Kernel.ParallelCompiler] Always log errors at the end of compilation
* [String] Fix `String.capitalize/1` with a single codepoint

#### IEx

* [IEx] Fix autocompletion of function signatures on Erlang/OTP 26
* [IEx] Do not assume `$HOME` is set

#### Mix

* [mix deps.compile] Handle compilation of rebar3 dependencies when rebar3 is on a path with spaces on Unix
* [mix test] Properly resolve relative paths when running tests from individual files
* [mix test] Properly resolve Windows paths when running tests from individual files

## v1.16.0 (2023-12-22)

### 1. Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.16.0
1.16.1
2 changes: 1 addition & 1 deletion bin/elixir
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.16.0
ELIXIR_VERSION=1.16.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
@@ -1,6 +1,6 @@
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)

set ELIXIR_VERSION=1.16.0
set ELIXIR_VERSION=1.16.1

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

0 comments on commit e0658bb

Please sign in to comment.