Skip to content
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
36 changes: 34 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,42 @@
Changelog
=========

1.2.1
-----
Unreleased
----------
:Released: under development

1.3.0
-----
:Released: 28.09.2025

This release makes Sphinx-Test-Reports compatible with Sphinx-Needs 5.1 and
introduces several maintenance improvements.

* Improvement: Support for Sphinx-Needs 5.1.
`#119 <https://github.com/useblocks/sphinx-test-reports/pull/119>`_
* Bugfix: Fix plantuml on RTD.
`#115 <https://github.com/useblocks/sphinx-test-reports/pull/115>`_
* Maintenance: Removed py38 from classifiers.
`#116 <https://github.com/useblocks/sphinx-test-reports/pull/116>`_
* Maintenance: Activate mypy.
`#113 <https://github.com/useblocks/sphinx-test-reports/pull/113>`_
* Maintenance: Remove baumpfleger.
`#112 <https://github.com/useblocks/sphinx-test-reports/pull/112>`_
* Maintenance: Clean makefile.
`#111 <https://github.com/useblocks/sphinx-test-reports/pull/111>`_
* Maintenance: Use flit.
`#110 <https://github.com/useblocks/sphinx-test-reports/pull/110>`_
* Maintenance: Added all_good job.
`#109 <https://github.com/useblocks/sphinx-test-reports/pull/109>`_
* Maintenance: Add standard hooks.
`#106 <https://github.com/useblocks/sphinx-test-reports/pull/106>`_
* Maintenance: Add yamlfmt.
`#105 <https://github.com/useblocks/sphinx-test-reports/pull/105>`_
* Maintenance: Introduce ruff.
`#104 <https://github.com/useblocks/sphinx-test-reports/pull/104>`_
* Maintenance: Add taplo pre-commit.
`#103 <https://github.com/useblocks/sphinx-test-reports/pull/103>`_


1.2.0
-----
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
author = "team useblocks"

# The short X.Y version
version = "1.2"
version = "1.3"
# The full version, including alpha/beta/rc tags
release = "1.2.0"
release = "1.3.0"

needs_id_regex = ".*"
needs_css = "dark.css"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "sphinx-test-reports"
version = "1.2.0"
version = "1.3.0"
description = "Sphinx extension for showing test results and test environment information inside sphinx documentations"
readme = "README.rst"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/test_reports/test_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# fmt: on

VERSION = "1.1.1"
VERSION = "1.3.0"


def setup(app: Sphinx):
Expand Down
Loading