8000 0.7.0 release by TomasTomecek · Pull Request #171 · TomasTomecek/sen · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

0.7.0 release #171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.7.0

* Use also `HostConfig` to get port bindings. Thanks to [@soyo42](https://github.com/soyo42), [#169](https://github.com/TomasTomecek/sen/pull/169).
* CPU usage is processed more safely. Thanks to [@soyo42](https://github.com/soyo42), [#168](https://github.com/TomasTomecek/sen/pull/168).
* Fedora packaging updates.


## 0.6.2

* Sen now has an icon! Thanks to [@Vitexus](https://github.com/Vitexus), [#161](https://github.com/TomasTomecek/sen/pull/161).
Expand Down
5 changes: 4 additions & 1 deletion sen.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


Name: %{srcname}
Version: 0.6.2
Version: 0.7.0
Release: 1%{?dist}
Summary: %{sum}

Expand Down Expand Up @@ -75,6 +75,9 @@ py.test-%{python3_version} -vv tests || :


%changelog
* Wed Apr 12 2023 Tomas Tomecek <ttomecek@redhat.com> - 0.7.0-1
- 0.7.0 upstream release

* Mon Nov 01 2021 Tomas Tomecek <ttomecek@redhat.com> - 0.6.2-1
- 0.6.2 upstream release

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.6.2'
__version__ = '0.7.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.6.2',
version='0.7.0',
description="Terminal User Interface for Docker Engine",
author='Tomas Tomecek',
author_email='tomas@tomecek.net',
Expand Down
0