From b9fd7d81147c20da11960cb0f296ec9a55845c06 Mon Sep 17 00:00:00 2001 From: David Foster Date: Sun, 26 Jun 2022 00:29:00 +0100 Subject: [PATCH] RELEASE: v3.4.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ sphinx_tabs/__init__.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32910cb..8b6e67f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Change Log +## 3.4.0 - 2022-06-26 + +### Added + +* Testing for sphinx 5 +* Tesing for python 3.10 + +### Fixed + +* Fixed parsing of MyST content, where first line was being stripped +* Typos in documentation +* Failing regression tests + + +### Changed + +* Testing to use an up-to-date pytest version + +### Removed + +* Testing for python 3.6 and sphinx versions 2 and 4 (see [#164](https://github.com/executablebooks/sphinx-tabs/pull/164)). Note that the package will likely continue to work fine with these, but this won't be assured by tests + + ## 3.3.1 - 2022-03-17 ### Fixed diff --git a/sphinx_tabs/__init__.py b/sphinx_tabs/__init__.py index bec7509..90cd713 100644 --- a/sphinx_tabs/__init__.py +++ b/sphinx_tabs/__init__.py @@ -1,3 +1,3 @@ -__version__ = "3.3.1" +__version__ = "3.4.0" __import__("pkg_resources").declare_namespace(__name__)