Skip to content

Commit 26ef4e9

Browse files
chore : Release Pipeline Setup (#7)
* chore : Release Pipeline Setup
1 parent d5fd961 commit 26ef4e9

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/actions/get-release-notes/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
state: 'all',
3535
head: `${process.env.REPO_OWNER}:release/${process.env.VERSION}`,
3636
});
37-
core.setOutput('RELEASE_NOTES', pulls[0].body);
37+
core.setOutput('RELEASE_NOTES', pulls[0]?.body ?? '');
3838
env:
3939
GITHUB_TOKEN: ${{ inputs.token }}
4040
REPO_OWNER: ${{ inputs.repo_owner }}

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ jobs:
7070
- name: Configure Python
7171
uses: actions/setup-python@v5
7272
with:
73-
python-version: "3.8"
73+
python-version: "3.12"
7474

7575
- name: Configure dependencies
7676
run: |
7777
pip install --user --upgrade pip
7878
pip install --user pipx
7979
pipx ensurepath
80-
pipx install poetry==1.4.2
80+
pipx install poetry
8181
poetry config virtualenvs.in-project true
8282
poetry install --with dev
83-
poetry self add "poetry-dynamic-versioning[plugin]==1.1.1"
83+
poetry self add "poetry-dynamic-versioning[plugin]"
8484
8585
- name: Build release
8686
run: |

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.9.0
1+
1.0.0b4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The Auth0 FastAPI SDK is a library for implementing user authentication in FastAPI web applications using [Auth0](https://auth0.com).
1+
![Auth0 FastAPI SDK](https://cdn.auth0.com/website/sdks/banners/auth0-fastapi-banner.png)
22

33
![Release](https://img.shields.io/pypi/v/auth0-fastapi) [![Codecov](https://img.shields.io/codecov/c/github/auth0/auth0-fastapi)](https://codecov.io/gh/auth0/auth0-fastapi) ![Downloads](https://img.shields.io/pypi/dw/auth0-fastapi) [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
44

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ click==8.1.8
1010
coverage==7.8.0
1111
cryptography==44.0.1
1212
docutils==0.21.2
13-
exceptiongroup==1.2.2
13+
exceptiongroup==1.3.0
1414
fastapi==0.115.12
1515
h11==0.16.0
1616
httpcore==1.0.9
@@ -30,27 +30,27 @@ mdurl==0.1.2
3030
more-itertools==10.6.0
3131
nh3==0.2.21
3232
packaging==24.2
33-
pluggy==1.5.0
33+
pluggy==1.6.0
3434
pycparser==2.22
3535
pydantic==2.11.2
3636
pydantic_core==2.33.1
3737
Pygments==2.19.1
3838
PyJWT==2.10.1
3939
pytest==7.4.4
40-
pytest-asyncio==0.20.3
40+
pytest-asyncio==0.23.8
4141
pytest-cov==4.1.0
4242
pytest-mock==3.14.0
4343
readme_renderer==44.0
44-
requests==2.32.3
44+
requests==2.32.4
4545
requests-toolbelt==1.0.0
4646
rfc3986==2.0.0
4747
rich==14.0.0
4848
sniffio==1.3.1
4949
starlette==0.46.1
5050
tomli==2.2.1
5151
twine==6.1.0
52-
typing-inspection==0.4.0
52+
typing-inspection==0.4.1
5353
typing_extensions==4.13.1
54-
urllib3==2.3.0
54+
urllib3==2.4.0
5555
uvicorn==0.34.0
5656
zipp==3.21.0

0 commit comments

Comments
 (0)