File tree Expand file tree Collapse file tree 2 files changed +22
-11
lines changed Expand file tree Collapse file tree 2 files changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
20
20
21
21
steps :
22
22
- name : Checkout the commit
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
25
25
- name : Set up Python ${{ matrix.python-version }}
26
- uses : actions/setup-python@v3
26
+ uses : actions/setup-python@v5
27
27
with :
28
28
python-version : ${{ matrix.python-version }}
29
29
@@ -38,17 +38,18 @@ jobs:
38
38
run : |
39
39
cd $GITHUB_WORKSPACE
40
40
pytest
41
- release :
41
+
42
+ docs :
42
43
name : Release
43
44
runs-on : ubuntu-latest
44
45
if : " startsWith(github.ref, 'refs/tags/')"
45
46
needs : test
46
47
steps :
47
48
- name : Checkout the commit
48
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
49
50
50
51
- name : Set up Python 3.8
51
- uses : actions/setup-python@v3
52
+ uses : actions/setup-python@v5
52
53
with :
53
54
python-version : " 3.8"
54
55
59
60
python --version
60
61
pip install -r requirements.txt
61
62
- name : Build
62
- run : |
63
- python -m build
63
+ run : python -m build
64
64
- name : Deploy docs
65
- run : |
66
- mkdocs gh-deploy --force
65
+ run : mkdocs gh-deploy --force
67
66
- name : Upload to pypi
68
- run : |
69
- twine upload -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} dist/*
67
+ run : twine upload --skip-existing -u __token__ -p ${{ secrets.TINI_PYPI_TOKEN }} dist/*
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.5.0] - 2024-02-10
11
+
12
+ ### Added
13
+
14
+ ### Changed
15
+
16
+ - Upgraded to pydantic v2.
17
+
18
+ ### Fixed
19
+
20
+ - Fixed orjson.JSONDecodeError when models have optional string fields
21
+ - Fixed ModuleNotFoundError: No module named 'mkdocstrings_handlers'
22
+
10
23
## [ 0.4.3] - 2022-12-29
11
24
12
25
### Added
You can’t perform that action at this time.
0 commit comments