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
15 changes: 12 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
Changelog
=========

Unreleased
----------
.. _`release:0.3.1`:

0.3.1
-----

:Released: 30.10.2025
:Full Changelog: `v0.3.0...v0.3.1 <https://github.com/useblocks/sphinx-collections/compare/0.3.0...e0fa5ff>`__

This release renamed the Python package from ``sphinxcontrib.collections`` to ``sphinx_collections``.

Expand Down Expand Up @@ -40,6 +45,10 @@ This release renamed the Python package from ``sphinxcontrib.collections`` to ``
from sphinx_collections.api import register_driver
from sphinx_collections.drivers import Driver

- 🔧 Add RTD config (:pr:`37`)

Required to deploy the documentation to readthedocs.io.

.. _`release:0.3.0`:

0.3.0
Expand All @@ -51,7 +60,7 @@ This release renamed the Python package from ``sphinxcontrib.collections`` to ``
This is a release after a long time, to bring the package up to date with latest
packaging and CI practices. Also some minor fixes and improvements have been made.

.. note:: The PyPI released failed due to a packaging issue. Please use 0.3.1.
.. note:: The PyPI released failed due to a packaging issue. Please use :ref:`release:0.3.1`.

- 🔧 Year 2025 package infrastructure (:pr:`29`)

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-collections"
version = "0.3.0"
version = "0.3.1"
description = "Sphinx collections extension for mapping directories and services as document folders"
readme = "README.rst"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion sphinx_collections/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
logging.basicConfig() # Only need to do this once

LOG = logging.getLogger(__name__)
VERSION = "0.3.0"
VERSION = "0.3.1"


def setup(app):
Expand Down