Skip to content

Commit c5b6f49

Browse files
committed
Update pyproject.toml
1 parent 9b6489b commit c5b6f49

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changes
33
*******
44

5+
3.0.0-beta
6+
==========
7+
8+
* Updated several entries in ``pyproject.toml`` including Project URLs and Classifiers
9+
510
3.0.0-alpha
611
===========
712

pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ requires-python = ">=3.12"
1111
classifiers = [
1212
"Development Status :: 5 - Production/Stable",
1313
"Intended Audience :: Developers",
14+
"License :: OSI Approved :: Apache Software License",
1415
"Programming Language :: Python :: 3",
1516
"Programming Language :: Python :: 3.12",
1617
"Programming Language :: Python :: 3.13",
1718
"Programming Language :: Python :: 3.14",
19+
"Programming Language :: Python :: 3 :: Only",
1820
"Topic :: Software Development :: Libraries",
1921
]
2022

@@ -26,10 +28,11 @@ dependencies = [
2628
]
2729

2830
[project.urls]
29-
Changes = "https://docs.wwdt.me/latest/changes/"
30-
Codeberg = "https://codeberg.org/qlp/wwdtm/"
31-
Documentation = "https://docs.wwdt.me"
32-
GitHub = "https://github.com/questionlp/wwdtm"
31+
changelog = "https://docs.wwdt.me/latest/changes/"
32+
source = "https://codeberg.org/qlp/wwdtm/"
33+
documentation = "https://docs.wwdt.me"
34+
github = "https://github.com/questionlp/wwdtm"
35+
sponsor = "https://github.com/sponsors/questionlp"
3336
Mastodon = "https://linh.social/@qlp"
3437
"Stats Page" = "https://stats.wwdt.me"
3538

wwdtm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from mysql.connector.connection import MySQLConnection
1212
from mysql.connector.pooling import PooledMySQLConnection
1313

14-
VERSION: str = "3.0.0-alpha"
14+
VERSION: str = "3.0.0-beta"
1515
MINIMUM_DATABASE_VERSION: tuple[int] = (4, 7, 0) # Major, Minor, Patch
1616
MINIMUM_DATABASE_VERSION_STRING: str = ".".join(
1717
str(segment) for segment in MINIMUM_DATABASE_VERSION

0 commit comments

Comments
 (0)