Skip to content

Commit

Permalink
Merge pull request #138 from TomasTomecek/0.6.0-release
Browse files Browse the repository at this point in the history
0.6.0
  • Loading branch information
TomasTomecek authored Mar 22, 2018
2 parents 4dc9c4e + 16426b5 commit f177ada
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down Expand Up @@ -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)
```

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit f177ada

Please sign in to comment.