File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ jobs:
85
85
uses : actions/setup-python@v4
86
86
with :
87
87
python-version : 3.8
88
- - name : Build package
88
+ - name : install flit
89
89
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 }}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
9
## v0.1.1 (November 2021)
4
10
5
11
✨ NEW: Nested parse class docstrings
Original file line number Diff line number Diff line change 1
1
"""Sphinx extension for documenting SQLAlchemy ORMs"""
2
2
from typing import TYPE_CHECKING
3
3
4
- __version__ = "0.1.1 "
4
+ __version__ = "0.2.0 "
5
5
6
6
if TYPE_CHECKING :
7
7
from sphinx .application import Sphinx
You can’t perform that action at this time.
0 commit comments