diff --git a/README.md b/README.md index b464229..1d511d4 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Visualize Erlang/Elixir Nodes On The Command Line base on [recon](https://github %% rebar.config {deps, [observer_cli]} %% erlang.mk -dep_observer_cli = hex 1.7.4 +dep_observer_cli = hex 1.7.5 ``` **Elixir** @@ -259,6 +259,8 @@ Support F/B to page up/down. - 1.7.5 - Fix crash when mnesia table with external copies. Which `mnesia:table_info(TabName, storage_type)` returns tuple `{ext, _, _}` + - Correct the order of the application information; the items Memory and Reductions have been switched. + - 1.7.4 - fix crash when ets:info/1 return undefined. - 1.7.3 diff --git a/mix.exs b/mix.exs index 0886ee9..6a69f9c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ObserverCli.MixProject do def project do [ app: :observer_cli, - version: "1.7.4", + version: "1.7.5", language: :erlang, description: "observer in shell", deps: [ diff --git a/src/observer_cli.app.src b/src/observer_cli.app.src index bdc997a..406c247 100644 --- a/src/observer_cli.app.src +++ b/src/observer_cli.app.src @@ -1,7 +1,7 @@ {application, observer_cli, [ {description, "Visualize Erlang Nodes On The Command Line"}, - {vsn, "1.7.4"}, + {vsn, "1.7.5"}, {modules, [ observer_cli ]},