From 16426b54e71f1a56ac6a3f2d40082ae7abb254b7 Mon Sep 17 00:00:00 2001 From: Tomas Tomecek Date: Thu, 15 Mar 2018 17:29:33 +0100 Subject: [PATCH] 0.6.0 Signed-off-by: Tomas Tomecek --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 3 +++ sen/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee3109..eb18982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # Changelog +## 0.6.0 + +### Features + + * There is a new view which resembles `docker system df`, initiated by [@soyo42](https://github.com/soyo42), thank you! [#135](https://github.com/TomasTomecek/sen/issues/135). + * This view shows how much disk space is being occupied. + * You can activate it by typing `:df`. + * sen will now display only a first line of a command in listing view. + * Everyone who uses k8s or OpenShift gets this. + * You can now forcibly remove containers and images. + * Pretty handy when an image has multiple names. + * There is a prompt presented after you try to remove anything in listing view. + * to prevent accidental deletion + * This feature can by turned off by invoking sen as `$ sen --skip-prompt-for-irreversible-action`. + * [reported](https://github.com/TomasTomecek/sen/issues/78) by [@jarfil](https://github.com/jarfil), thank you! + +### Bug Fixes + + * sen is able to display CPU stats correctly for API 1.25+, reported by [@soyo42](https://github.com/soyo42) [#131](https://github.com/TomasTomecek/sen/issues/131). + * `--debug` option now has a description, provided by [@nagracks](https://github.com/nagracks), thank you! + + ## 0.5.1 diff --git a/README.md b/README.md index 10b6d4d..734fccb 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ * sen notifies you whenever something happens (and reports slow queries) * supports a lot of vim-like keybindings (`j`, `k`, `gg`, `/`, ...) * you can get interactive tree view of all images (equivalent of `docker images --tree`) + * see how much space containers, images and volumes occupy (just type `:df`) You can [see the features yourself](/docs/features.md). @@ -167,6 +168,7 @@ f4 filtering, for more info run `help filter` in sen ``` i inspect image d remove image (irreversible!) +D remove image forcibly (irreversible!) enter display detailed info about image (when layer is focused) ``` @@ -177,6 +179,7 @@ i inspect container l display logs of container f follow logs of container d remove container (irreversible!) +D remove container forcibly (irreversible!) t stop container s start container r restart container diff --git a/sen/__init__.py b/sen/__init__.py index 363d101..699293a 100644 --- a/sen/__init__.py +++ b/sen/__init__.py @@ -2,7 +2,7 @@ from sen.constants import FALLBACK_LOG_PATH -__version__ = "0.5.1" +__version__ = "0.6.0" def set_logging(name="sen", level=logging.DEBUG, path=FALLBACK_LOG_PATH): diff --git a/setup.py b/setup.py index a73714d..f1fe107 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='sen', - version='0.5.1', + version='0.6.0', description="Terminal User Interface for Docker Engine", author='Tomas Tomecek', author_email='tomas@tomecek.net',