From 7020a4242f1143a293226cd35ceee02e4fe66d6d Mon Sep 17 00:00:00 2001 From: Michel Albert Date: Thu, 25 Jul 2024 17:12:35 +0200 Subject: [PATCH] Bump version to 2.0.1 --- doc/changelog.rst | 17 +++++++++++++++++ doc/conf.py | 5 ++++- pyproject.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 942d59e..c9fb513 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,23 @@ Changelog ========= +Release 2.0.1 +~~~~~~~~~~~~~ + +* **[added]** Add support for hostnames (instead of only IP-addresses) +* **[fixed]** Do not crash if ``sys.stdout`` is empty (f.ex. when running as + Windows service). Patch provided by M. Lehn. +* **[docs]** Minor fixes to the project documentation. +* **[support]** Add forwards-compatibility to Sphinx 8.0. Patch provided by J. + Addison. + Windows service). Patch provided by M. Lehn. +* **[support]** Add new import alias ``puresnmp.Auth`` and ``puresnmp.Priv`` + for easier imports +* **[support]** Switch to "src" layout for the project source code. +* **[support]** Display more readable name for plugin-loaders +* **[support]** Minor type-check fixes + + Release 2.0.0post1 - Maintenance release ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/conf.py b/doc/conf.py index 842d716..c969285 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,5 +56,8 @@ intersphinx_mapping = { "python": ("https://docs.python.org/3/", None), "x690": ("https://exhuma.github.io/x690/", None), - "puresnmp-crypto": ("https://exhuma.github.io/puresnmp-crypto/", None), + "puresnmp-crypto": ( + "https://puresnmp-crypto.readthedocs.io/en/latest/", + None, + ), } diff --git a/pyproject.toml b/pyproject.toml index 65a852b..68cbb0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "puresnmp" -version = "2.0.0post1" +version = "2.0.1" authors = [ { name = "Michel Albert", email = "michel@albert.lu" }, { name = "POST Luxembourg", email = "opensource@post.lu" },