Skip to content

Commit aed263e

Browse files
committed
Release 1.8.7
1 parent 47c9ada commit aed263e

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Observer CLI is a library to be dropped into any BEAM nodes, to be used to help
2929
%% rebar.config
3030
{deps, [observer_cli]}
3131
%% erlang.mk
32-
dep_observer_cli = hex 1.8.6
32+
dep_observer_cli = hex 1.8.7
3333
```
3434

3535
### Elixir

docs/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
- 1.8.7
3+
- Handle unchanged case in `net_kernel:set_net_ticktime`.
4+
- Fix `rebar3 check` by updating the Elvis macro rule name to `macro_naming_convention`.
5+
- Simplify `observer_cli_escriptize` test shutdown code by replacing an unnecessary anonymous function wrapper.
6+
27
- 1.8.6
38
- Add external formatter support (dynamic loading/app env) and docs; formatter callback now receives pid.
49
- Improve State view rendering by fixing redraw timers and infinite-loop edge cases.

elvis.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
, rules => [
2323
{elvis_text_style, line_length, #{limit => 140}},
2424
{elvis_style, no_types, disable},
25-
{elvis_style, macro_names, disable}
25+
{elvis_style, macro_naming_convention, disable}
2626
]
2727
}
2828
, #{ dirs => ["."]

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule ObserverCli.MixProject do
44
def project do
55
[
66
app: :observer_cli,
7-
version: "1.8.6",
7+
version: "1.8.7",
88
language: :erlang,
99
description: "observer in shell",
1010
deps: [

src/observer_cli.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, observer_cli, [
22
{description, "Visualize Erlang Nodes On The Command Line"},
3-
{vsn, "1.8.6"},
3+
{vsn, "1.8.7"},
44
{modules, [observer_cli]},
55
{registered, []},
66
{applications, [kernel, stdlib, recon]},

src/observer_cli_escriptize.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ ensure_set_env(App, Env) ->
150150
maybe_stop_remote(App) ->
151151
case application:get_env(App, test_stop_remote, false) of
152152
true ->
153-
spawn(fun() -> init:stop() end),
153+
spawn(fun init:stop/0),
154154
ok;
155155
false ->
156156
ok

0 commit comments

Comments
 (0)