Skip to content

Commit a231f21

Browse files
committed
release version 0.2.0
1 parent 56ebf7a commit a231f21

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

.github/workflows/publish.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,25 @@ jobs:
1717
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
1818
- run: uv build
1919
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
20+
id: upload-artifact
2021
with:
21-
path: ./dist
22+
name: dist
23+
path: dist/
24+
if-no-files-found: error
2225
create-release:
2326
needs: [build]
2427
runs-on: ubuntu-latest
2528
permissions:
2629
contents: write
2730
steps:
2831
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
32+
with:
33+
artifact-ids: ${{ needs.build.outputs.artifact-id }}
34+
path: dist/
2935
- name: create release
3036
run: >
3137
gh release create --draft --repo ${{ github.repository }}
32-
${{ github.ref_name }} artifact/*
38+
${{ github.ref_name }} dist/*
3339
env:
3440
GH_TOKEN: ${{ github.token }}
3541
publish-pypi:
@@ -42,6 +48,9 @@ jobs:
4248
id-token: write
4349
steps:
4450
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
51+
with:
52+
artifact-ids: ${{ needs.build.outputs.artifact-id }}
53+
path: dist/
4554
- uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
4655
with:
47-
packages-dir: artifact/
56+
packages-dir: dist/

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Version 0.2.0
22

3-
Unreleased
3+
Released 2025-11-13
44

55
- Drop support for Python 3.9.
66
- Add `get_or_abort` and `one_or_abort` methods, which get a single row or

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "Flask-SQLAlchemy-Lite"
3-
version = "0.2.0.dev"
3+
version = "0.2.0"
44
description = "Integrate SQLAlchemy with Flask."
55
readme = "README.md"
66
license = "MIT"

uv.lock

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)