Skip to content

Commit

Permalink
Merge pull request #182 from TomasTomecek/080-release
Browse files Browse the repository at this point in the history
0.8.0 release
  • Loading branch information
TomasTomecek authored Nov 21, 2024
2 parents f36aa49 + 4755150 commit 43c0f77
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.8.0

* Bump the official container image to `alpine:3.14`. Thanks to [@soyo42](https://github.com/soyo42), [#172](https://github.com/TomasTomecek/sen/pull/172).
* Make sen compatible with python-docker 7.x, [#177](https://github.com/TomasTomecek/sen/pull/177).
* Make sen work with urwid-2.6.14 and python 3.13. Thanks to [@0x6D682D7331](https://github.com/0x6D682D7331), [#180](https://github.com/TomasTomecek/sen/pull/180).


## 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).
Expand Down
3 changes: 1 addition & 2 deletions docs/releasing.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# How to release `sen`?

1. set correct version in `setup.py` and `sen/__init__.py`
2. verify that docker hub builds are passing
2. verify that docker hub builds are passing: https://hub.docker.com/repository/docker/tomastomecek/sen/general
3. do **NOT** create feature branch with same name as tag
4. prepare changelog (`CHANGELOG.md` and release notes)
5. when tagged with release, verify that release was successful on travis
6. correct Docker Hub tags - let latest release point to `latest`
7. bump version in setup.py to `x.y.z-dev`

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.7.0
Version: 0.8.0
Release: 1%{?dist}
Summary: %{sum}

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


%changelog
* Wed Nov 20 2024 Tomas Tomecek <ttomecek@redhat.com> - 0.8.0-1
- 0.8.0 upstream release

* Wed Apr 12 2023 Tomas Tomecek <ttomecek@redhat.com> - 0.7.0-1
- 0.7.0 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.7.0'
__version__ = '0.8.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.7.0',
version='0.8.0',
description="Terminal User Interface for Docker Engine",
author='Tomas Tomecek',
author_email='tomas@tomecek.net',
Expand Down

0 comments on commit 43c0f77

Please sign in to comment.