From 46d40cf89c090363c6bb3e52ab21e88f87113be2 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Wed, 13 Nov 2024 19:28:26 -0500 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the configured PyPi Token Secret --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6d0d31..16ee5bb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -95,4 +95,4 @@ jobs: flit publish env: FLIT_USERNAME: __token__ - FLIT_PASSWORD: ${{ secrets.PYPI_KEY }} + FLIT_PASSWORD: ${{ secrets.PYPI_TOKEN }} From 7e18e6914df233c85dc5f9e1df5df753ff6f49ee Mon Sep 17 00:00:00 2001 From: Kyle King Date: Wed, 13 Nov 2024 19:31:18 -0500 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mdformat_myst/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdformat_myst/__init__.py b/mdformat_myst/__init__.py index f89bb85..ead940d 100644 --- a/mdformat_myst/__init__.py +++ b/mdformat_myst/__init__.py @@ -1,3 +1,3 @@ """Mdformat plugin for MyST compatibility.""" -__version__ = "0.2.0" +__version__ = "0.2.1" From 2d35e328a0bbff6b1b47bddcddb2716b433485eb Mon Sep 17 00:00:00 2001 From: Kyle King Date: Wed, 13 Nov 2024 19:35:34 -0500 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A7=AA=20TEST:=20upgrade=20docformatt?= =?UTF-8?q?er=20hook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pending versioned release: https://github.com/PyCQA/docformatter/issues/293 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ccc50f0..8c9a832 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: - flake8-builtins - flake8-comprehensions - repo: https://github.com/myint/docformatter - rev: v1.7.5 + rev: eb1df347edd128b30cd3368dddc3aa65edcfac38 hooks: - id: docformatter - repo: https://github.com/executablebooks/mdformat