Skip to content

Commit

Permalink
v1.10.1: Bump version and update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Fiege <cfi@pengutronix.de>
  • Loading branch information
SmithChart committed Apr 22, 2024
1 parent 9d164d0 commit 2e45b98
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
Changelog
=========

`v1.10.1 <https://github.com/pengutronix/flamingo/compare/v1.10...v1.10.1>`_ (2024-04-23)
-----------------------------------------------------------------------------------------

Changes
~~~~~~~

(none)

Bugfixes
~~~~~~~~

* plugins/Sphinx: Sphinx 7.3.0 has introduced a
`new configuration format <https://github.com/sphinx-doc/sphinx/pull/12265>`__ for themes.
This breaks the way we parse the theme configuration.
For this bugfix release we pin the Sphinx dependency to :code:`<7.3.0` to work around this problem.

`v1.10 <https://github.com/pengutronix/flamingo/compare/v1.9...v1.10>`_ (2024-04-22)
------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion flamingo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

_dirname = os.path.dirname(__file__)

VERSION = (1, 10)
VERSION = (1, 10, 1)
VERSION_STRING = '.'.join([str(i) for i in VERSION])
THEME_ROOT = os.path.join(_dirname, 'theme')
PROJECT_TEMPLATES_ROOT = os.path.join(_dirname, 'project_templates')
Expand Down

0 comments on commit 2e45b98

Please sign in to comment.