Skip to content

Commit c31b175

Browse files
authored
🚀 Release v0.2.0 (#13)
1 parent 495e473 commit c31b175

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ jobs:
8585
uses: actions/setup-python@v4
8686
with:
8787
python-version: 3.8
88-
- name: Build package
88+
- name: install flit
8989
run: |
90-
pip install wheel
91-
python setup.py sdist bdist_wheel
92-
- name: Publish
93-
uses: pypa/gh-action-pypi-publish@v1.8.10
94-
with:
95-
user: __token__
96-
password: ${{ secrets.PYPI_KEY }}
90+
pip install flit~=3.4
91+
- name: Build and publish
92+
run: |
93+
flit publish
94+
env:
95+
FLIT_USERNAME: __token__
96+
FLIT_PASSWORD: ${{ secrets.PYPI_KEY }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.2.0 (November 2023)
4+
5+
* 🐛 FIX: Skip non-columns by @rclaasen in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/2
6+
* ⬆️ Update sphinx version to 5,6,7 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/6
7+
* ⬆️ Update sqlachemy version to 2 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/12
8+
39
## v0.1.1 (November 2021)
410

511
✨ NEW: Nested parse class docstrings

sphinx_sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Sphinx extension for documenting SQLAlchemy ORMs"""
22
from typing import TYPE_CHECKING
33

4-
__version__ = "0.1.1"
4+
__version__ = "0.2.0"
55

66
if TYPE_CHECKING:
77
from sphinx.application import Sphinx

0 commit comments

Comments
 (0)