Skip to content

Commit

Permalink
🚀 Release v0.2.0 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Nov 9, 2023
1 parent 495e473 commit c31b175
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sphinx_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c31b175

Please sign in to comment.