diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0c26e10..3b48311 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Changelog This page shows all the changes done on each version. +Version 1.4.2 +------------- + +* Make it compatible with sphinx-tabs >=3.4.6 (https://github.com/readthedocs/sphinx-hoverxref/pull/318). +* Update dependencies + Version 1.4.1 ------------- diff --git a/hoverxref/__init__.py b/hoverxref/__init__.py index 0835d84..3ef1075 100644 --- a/hoverxref/__init__.py +++ b/hoverxref/__init__.py @@ -1,3 +1,3 @@ """Sphinx extension to show tooltips with content embedded when hover a reference.""" -__version__ = "1.4.1" +__version__ = "1.4.2" diff --git a/pyproject.toml b/pyproject.toml index 37a0fb0..f8c052d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ dependencies = [ "sphinx >=5.0", "sphinxcontrib-jquery", ] -version = "1.4.1" +version = "1.4.2" readme = "README.rst" license = {file = "LICENSE"} classifiers = [ @@ -78,7 +78,7 @@ exclude = [ ] [tool.bumpver] -current_version = "1.4.1" +current_version = "1.4.2" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Release {new_version}" commit = true