From c31b175bc430a525f8ac9d9e840ab6f13fe47abe Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 9 Nov 2023 17:28:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20v0.2.0=20(#13)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 16 ++++++++-------- CHANGELOG.md | 6 ++++++ sphinx_sqlalchemy/__init__.py | 2 +- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 181de9c..0f82199 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,12 +85,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: 3.8 - - name: Build package + - name: install flit run: | - pip install wheel - python setup.py sdist bdist_wheel - - name: Publish - uses: pypa/gh-action-pypi-publish@v1.8.10 - with: - user: __token__ - password: ${{ secrets.PYPI_KEY }} + pip install flit~=3.4 + - name: Build and publish + run: | + flit publish + env: + FLIT_USERNAME: __token__ + FLIT_PASSWORD: ${{ secrets.PYPI_KEY }} diff --git a/CHANGELOG.md b/CHANGELOG.md index d653d94..d2e4009 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.0 (November 2023) + +* 🐛 FIX: Skip non-columns by @rclaasen in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/2 +* ⬆️ Update sphinx version to 5,6,7 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/6 +* ⬆️ Update sqlachemy version to 2 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/12 + ## v0.1.1 (November 2021) ✨ NEW: Nested parse class docstrings diff --git a/sphinx_sqlalchemy/__init__.py b/sphinx_sqlalchemy/__init__.py index f1f3b74..1338af5 100644 --- a/sphinx_sqlalchemy/__init__.py +++ b/sphinx_sqlalchemy/__init__.py @@ -1,7 +1,7 @@ """Sphinx extension for documenting SQLAlchemy ORMs""" from typing import TYPE_CHECKING -__version__ = "0.1.1" +__version__ = "0.2.0" if TYPE_CHECKING: from sphinx.application import Sphinx