Skip to content

Commit 81a12b7

Browse files
committed
Release v1.16.0-rc.1
1 parent 88ba776 commit 81a12b7

File tree

4 files changed

+46
-3
lines changed

4 files changed

+46
-3
lines changed

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,49 @@ Another [ExDoc](https://github.com/elixir-lang/ex_doc) feature we have incorpora
6363

6464
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.
6565

66+
## v1.16.0-rc.1 (2023-12-12)
67+
68+
### 1. Enhancements
69+
70+
#### Elixir
71+
72+
* [Code] Add `:emit_warnings` for `Code.string_to_quoted/2`
73+
* [File] Add `:offset` option to `File.stream!/2`
74+
* [Kernel] Auto infer size of matched variable in bitstrings
75+
* [Kernel] Preserve column information when translating typespecs
76+
* [String] Add `String.replace_invalid/2`
77+
78+
#### Logger
79+
80+
* [Logger] Add `Logger.levels/0`
81+
82+
#### Mix
83+
84+
* [mix archive.install] Support `--sparse` option
85+
* [mix compile.app] Warn if both `:applications` and `:extra_applications` are used
86+
* [mix compile.elixir] Pass original exception down to diagnostic `:details` when possible
87+
* [mix deps.clean] Emit a warning instead of crashing when a dependency cannot be removed
88+
* [mix escript.install] Support `--sparse` option
89+
* [mix release] Include `include/` directory in releases
90+
91+
### 2. Bug fixes
92+
93+
#### Elixir
94+
95+
* [Code] Keep quotes for atom keys in formatter
96+
* [Macro] Address exception on `Macro.to_string/1` for certain ASTs
97+
* [Module] Make sure file and position information is included in several module warnings (regression)
98+
* [Path] Lazily evaluate `File.cwd!/0` in `Path.expand/1` and `Path.absname/1`
99+
100+
#### IEx
101+
102+
* [IEx.Pry] Fix prying functions with only literals in their body
103+
104+
#### Mix
105+
106+
* [mix archive.install] Restore code paths after archive.install
107+
* [mix escript.install] Restore code paths after archive.install
108+
66109
## v1.16.0-rc.0 (2023-10-31)
67110

68111
### 1. Enhancements

VERSION

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

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

0 commit comments

Comments
 (0)