Skip to content

Commit b833bb6

Browse files
committed
0.2.1 - adjust the project info
Adjust the project information. This change is mainly targeted for adding the documentation link.
1 parent e16e43e commit b833bb6

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
3. Fix: Correct the `usage.py` where the instance path and the engine options are not configured properly.
1414
4. Fix: `utilities.clone_method` and `utilities.clone_function` does not provide correct signature in run time. Correct the signature manually.
1515

16+
#### :floppy_disk: Change
17+
18+
1. Adjust the project information. This change is mainly targeted for adding the documentation link.
19+
1620
### 0.2.0 @ 12/13/2024
1721

1822
#### :mega: New

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,6 @@ Compared to the above minimal examples, we also provided a `usage.py` file and e
142142
143143
## 3. Documentation
144144
145-
> [!CAUTION]
146-
> The documentation is not accessible now because it is still to be done.
147-
148145
Check the documentation to find more details about the examples and APIs.
149146
150147
https://cainmagi.github.io/flask-sqlalchemy-compat/

flask-sqlalchemy-compat.code-workspace

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@
2525
"python.languageServer": "Pylance",
2626
"python.analysis.typeCheckingMode": "standard",
2727
"prettier.tabWidth": 2,
28-
"editor.tabSize": 4
28+
"editor.tabSize": 4,
29+
"search.exclude": {
30+
".git": true,
31+
"docs": true,
32+
"dist": true,
33+
"instance": true
34+
},
2935
},
3036
"extensions": {
3137
"recommendations": [

flask_sqlalchemy_compat/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
__all__ = ("__version__",)
2222

23-
__version__ = "0.2.0"
23+
__version__ = "0.2.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ requires-python = ">=3.7"
3030

3131
[project.urls]
3232
Homepage = "https://github.com/cainmagi/flask-sqlalchemy-compat"
33-
# Documentation = "https://cainmagi.github.io/flask-sqlalchemy-compat/"
33+
Documentation = "https://cainmagi.github.io/flask-sqlalchemy-compat/"
3434
Repository = "https://github.com/cainmagi/flask-sqlalchemy-compat.git"
3535
Issues = "https://github.com/cainmagi/flask-sqlalchemy-compat/issues"
3636
Changelog = "https://github.com/cainmagi/flask-sqlalchemy-compat/blob/main/Changelog.md"

0 commit comments

Comments
 (0)