proj/pkgcore/snakeoil:master commit in: src/snakeoil/, /
"Arthur Zamarin" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786213237.e9c946e0883e47459a32e839193ae18c4f0e996f.arthurzam@gentoo> |
commit: e9c946e0883e47459a32e839193ae18c4f0e996f Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Aug 8 18:20:37 2026 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Aug 8 18:20:37 2026 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=e9c946e0 new release 0.11.4 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> NEWS.rst | 2 +- src/snakeoil/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 18c1a06..343a463 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,7 +2,7 @@ Release Notes ============= -snakeoil 0.11.4 (unreleased) +snakeoil 0.11.4 (2026-08-08) ---------------------------- - ``snakeoil.cli.arghparse.ArgumentParser``: options now accept space-separated diff --git a/src/snakeoil/__init__.py b/src/snakeoil/__init__.py index c5623f3..b8ebdeb 100644 --- a/src/snakeoil/__init__.py +++ b/src/snakeoil/__init__.py @@ -13,6 +13,6 @@ This library is a bit of a grabbag of the following: __title__ = "snakeoil" # TODO: wire these all against py_build rendered values, or against git. Don't hardcode it here. # Once that's done, extend it to the rest of the ecosystem. -__version__ = "0.11.4.dev0" -__version_info__ = (0, 11, 4, "dev0") +__version__ = "0.11.4" +__version_info__ = (0, 11, 4) __python_mininum_version__ = (3, 11, 0)