Skip to content

Commit

Permalink
Release v1.15.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 29, 2023
1 parent 4415148 commit d7bdf22
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 8 deletions.
35 changes: 30 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,24 +109,49 @@ in the long term.
See the new `Logger` documentation for more information on the
new features and on compatibility.

## v1.15.0-rc.1
## v1.15.0-rc.1 (2022-05-29)

### 1. Enhancements

#### Elixir

* [File] Support distributed `File.Stream`
* [Module] Add `Module.get_last_attribute/3`
* [Task] Reduce footprint of tasks by avoiding unecessary work during spawning

#### ExUnit

* [ExUnit.Case] Add `ExUnit.Case.get_last_registered_test/1`

### 2. Bug fixes

#### Elixir

* [Kernel] Raise when macros are given to dialyzer
* [Kernel] Support bitstring specifiers as map keys in pattern (regression)
* [Task] Do not double log Task failure reports
* [Code] Ensure `:on_undefined_variable` option works as advertised (regression)
* [Code] Format paths in `Code.with_diagnostic/2` as relative paths (regression)
* [Kernel] Raise when macros are given to dialyzer
* [Kernel] Support bitstring specifiers as map keys in pattern (regression)
* [Task] Do not double log Task failure reports

#### ExUnit

* [ExUnit.CaptureLog] Allow capturing deprecated log level (regression)
* [ExUnit.DocTest] Ensure proper line is returned when failing to parse doctest results

#### IEx

* [IEx] Fix IO operations not returning when booting IEx
* [IEx] Fix IO operations not returning when booting IEx (regression)

#### Mix

* [mix deps] Ensure dependencies with `included_applications` can be loaded (regression)
* [mix format] Ensure proper formatter options are returned for files (regression)

### 3. Soft deprecations

#### Elixir

* [Kernel] Require pin variable when accessing variable inside binary size in match

## v1.15.0-rc.0 (2022-05-22)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.0-rc.0
1.15.0-rc.1
2 changes: 1 addition & 1 deletion bin/elixir
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.15.0-rc.0
ELIXIR_VERSION=1.15.0-rc.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)

set ELIXIR_VERSION=1.15.0-rc.0
set ELIXIR_VERSION=1.15.0-rc.1

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

0 comments on commit d7bdf22

Please sign in to comment.