Skip to content

Commit d725c66

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent fab917d commit d725c66

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
* Enhancements
66
* [Elixir] Support Erlang 17.5 and 18.0
7+
* [Mix] Support "--search PATTERN" in "mix help"
8+
* [Mix] Support `:start_permanent` that starts the application as permanent
9+
* [Mix] Support `:build_embedded` that compile protocols, avoid symlinks and ensure protocols are loaded on boot
10+
* [Mix] Make "mix app.start" public and support "--permanent" and "--temporary" options
711
* [URI] Speed decoding operations
812

913
* Bug fixes

lib/mix/lib/mix/tasks/app.start.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ defmodule Mix.Tasks.App.Start do
5656
# or not.
5757
#
5858
# Mix should not depend directly on Logger so check that it's loaded.
59-
if Code.ensure_loaded?(Logger), do: Logger.App.stop()
59+
if Process.whereis(Logger), do: Logger.App.stop()
6060
start(Mix.Project.config, opts)
6161
end
6262
end

0 commit comments

Comments
 (0)