From 3b440a048bef2c8aff2cdbe29b622f975c89d1b7 Mon Sep 17 00:00:00 2001 From: zhongwencool Date: Fri, 27 Aug 2021 09:43:35 +0800 Subject: [PATCH] bump 1.7.1 --- README.md | 6 +++++- mix.exs | 2 +- src/observer_cli.app.src | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a006a72..e8de4f2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,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.0 +dep_observer_cli = hex 1.7.1 ``` **Elixir** ```elixir @@ -223,6 +223,10 @@ Support F/B to page up/down. ---------------- ### Changelog +- 1.7.1 + - application view show starting/loading/startPfalse/loaded/started application. + - fixed badarg when staring by rpc and stop by `ctrl+c`. + - fixed mix.exe version error - 1.7.0 - application view support reductions/memory/process_count sort - plugin support `{byte, 1024}` to `10.0000 KB` diff --git a/mix.exs b/mix.exs index fe41c1e..7320fba 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ObserverCli.MixProject do def project do [ app: :observer_cli, - version: "1.6.2", + version: "1.7.1", language: :erlang, description: "observer in shell", deps: [ diff --git a/src/observer_cli.app.src b/src/observer_cli.app.src index 815ef30..c9727ad 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.0"}, + {vsn, "1.7.1"}, {modules, [ observer_cli ]},