From 3f03dd68c4c3defb3f75fc7dd7b4ea5fb54ff5e2 Mon Sep 17 00:00:00 2001 From: Duodu Randy Date: Thu, 13 Nov 2025 13:34:52 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Bump=20version=20to=201.3.2=20an?= =?UTF-8?q?d=20update=20changelog=20for=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/changelog.rst | 12 ++++++++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- sphinxcontrib/test_reports/test_reports.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index e4de186..ffee589 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,18 @@ Unreleased ---------- :Released: under development +.. _`release:1.3.2`: + +1.3.2 +----- +:Released: 13.11.2025 + +This release improves Sphinx-Test-Reports compatibility with Sphinx and +fixes some Sphinx related deprecation warnings. + +* Bugfix: Fix deprecation warnings with Sphinx 8. + `#128 `_ + .. _`release:1.3.1`: 1.3.1 diff --git a/docs/conf.py b/docs/conf.py index f8ce4ed..7f0afdf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ # The short X.Y version version = "1.3" # The full version, including alpha/beta/rc tags -release = "1.3.1" +release = "1.3.2" needs_id_regex = ".*" needs_css = "dark.css" diff --git a/pyproject.toml b/pyproject.toml index bf0cab8..5bd2e1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "sphinx-test-reports" -version = "1.3.1" +version = "1.3.2" description = "Sphinx extension for showing test results and test environment information inside sphinx documentations" readme = "README.rst" license = { text = "MIT" } diff --git a/sphinxcontrib/test_reports/test_reports.py b/sphinxcontrib/test_reports/test_reports.py index 19b368d..317fc23 100644 --- a/sphinxcontrib/test_reports/test_reports.py +++ b/sphinxcontrib/test_reports/test_reports.py @@ -37,7 +37,7 @@ # fmt: on -VERSION = "1.3.1" +VERSION = "1.3.2" def setup(app: Sphinx):