File tree 4 files changed +17
-5
lines changed
4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -117,29 +117,41 @@ in the long term.
117
117
See the new ` Logger ` documentation for more information on the
118
118
new features and on compatibility.
119
119
120
- ## v1.15.1
120
+ ## v1.15.1 (2023-06-30)
121
121
122
- ### 1. Bug fixes
122
+ ### 1. Enhancements
123
+
124
+ * [ Code] ` Code.string_to_quoted/2 ` honors ` :static_atoms_encoder ` for multi-letter sigils
125
+
126
+ ### 2. Bug fixes
123
127
124
128
#### ExUnit
125
129
126
130
* [ ExUnit.CaptureLog] Fix race condition on concurrent ` capture_log `
131
+ * [ ExUnit.CaptureLog] Respect options passed to nested ` capture_log ` calls
127
132
* [ ExUnit.Doctest] Properly compile doctests without results terminated by fences
133
+ * [ ExUnit.Doctest] Allow variables defined in doctests to be used in expectation
128
134
129
135
#### IEx
130
136
131
137
* [ IEx] Ensure ` pry ` works on Erlang/OTP 25 and earlier while IEx is booting
138
+ * [ IEx] ` Code.Fragment.surround_context ` considers surround context around spaces and parens
132
139
133
140
#### Logger
134
141
142
+ * [ Logger] Do not assume Logger has been loaded at compile-time
135
143
* [ Logger.Formatter] Properly handle ` :function ` as metadata
136
144
137
145
#### Mix
138
146
139
147
* [ mix compile] Ensure the current project is available on the code path after its Elixir sources are compiled
140
148
* [ mix compile] Guarantee yecc/leex are available when emitting warnings from previous runs
149
+ * [ mix compile] Fix bug where an external resource was deleted after its
150
+ mtime was successfully retrieved
151
+ * [ mix compile] Track removed modules and exports across local deps
141
152
* [ mix deps] Fix an issue where dependencies could not be started in an umbrella projects
142
153
* [ mix release] Properly handle optional dependencies when there is a conflict in the application start mode
154
+ * [ mix release] Remove ` --werl ` from release scripts on Erlang/OTP 26
143
155
144
156
## v1.15.0 (2023-06-19)
145
157
Original file line number Diff line number Diff line change 1
- 1.15.0
1
+ 1.15.1
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -e
3
3
4
- ELIXIR_VERSION=1.15.0
4
+ ELIXIR_VERSION=1.15.1
5
5
6
6
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ " $1 " = " --help" ] || [ " $1 " = " -h" ]; }; }; then
7
7
cat << USAGE >&2
Original file line number Diff line number Diff line change 1
1
@ if defined ELIXIR_CLI_ECHO (@ echo on) else (@ echo off)
2
2
3
- set ELIXIR_VERSION = 1.15.0
3
+ set ELIXIR_VERSION = 1.15.1
4
4
5
5
setlocal enabledelayedexpansion
6
6
if " " %1 " " == " " " " if " " %2 " " == " " " " goto documentation
You can’t perform that action at this time.
0 commit comments