From 5c641fce39905f0d6838c3c9a4a41b81fe570e61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Wed, 5 Apr 2023 16:14:16 +0200 Subject: [PATCH 1/3] chore: Fix docs deploy duty --- duties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/duties.py b/duties.py index d7ed6115..01d632ae 100644 --- a/duties.py +++ b/duties.py @@ -175,7 +175,7 @@ def docs_deploy(ctx: Context) -> None: ctx: The context instance (passed automatically). """ ctx.run("git remote add org-pages git@github.com:mkdocstrings/mkdocstrings.github.io", silent=True, nofail=True) - ctx.run(mkdocs.gh_deploy(remote_name="org-pages"), title="Deploying documentation") + ctx.run(mkdocs.gh_deploy(remote_name="org-pages", force=True), title="Deploying documentation") @duty From bff760b77c1eedfa770e852aa994a69ff51b0a32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Wed, 5 Apr 2023 22:25:51 +0200 Subject: [PATCH 2/3] fix: Fix missing typing-extensions dependency on Python less than 3.10 Issue #548: https://github.com/mkdocstrings/mkdocstrings/issues/548 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 744f7d57..07665246 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,7 @@ dependencies = [ "mkdocs>=1.2", "mkdocs-autorefs>=0.3.1", "pymdown-extensions>=6.3", + "typing-extensions>=4.1; python_version < '3.10'", ] [project.optional-dependencies] From 9622e38c9c700af9a785b847c4e63bf48e72c2c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Wed, 5 Apr 2023 22:26:35 +0200 Subject: [PATCH 3/3] chore: Prepare release 0.21.1 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70a67007..7b4839fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.21.1](https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.21.1) - 2023-04-05 + +[Compare with 0.21.0](https://github.com/mkdocstrings/mkdocstrings/compare/0.21.0...0.21.1) + +### Bug Fixes + +- Fix missing typing-extensions dependency on Python less than 3.10 ([bff760b](https://github.com/mkdocstrings/mkdocstrings/commit/bff760b77c1eedfa770e852aa994a69ff51b0a32) by Timothée Mazzucotelli). [Issue #548](https://github.com/mkdocstrings/mkdocstrings/issues/548) + ## [0.21.0](https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.21.0) - 2023-04-05 [Compare with 0.20.0](https://github.com/mkdocstrings/mkdocstrings/compare/0.20.0...0.21.0)