Skip to content

Commit 7418c5f

Browse files
committed
update package version
1 parent a03602f commit 7418c5f

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Result query
7171
UPDATE `users` SET `username` = 'John Doe', `status` = 'new status'
7272
WHERE `id` = 7 LIMIT 1;
7373
```
74-
More examples you can find in [documentation](docs/index.md)
74+
More examples you can find in [documentation](https://github.com/co0lc0der/simple-query-builder-python/blob/main/docs/index.md)
7575

7676
## ToDo
7777
I'm going to add the next features into future versions

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[egg_info]
2-
tag_build = 0.3.6
2+
tag_build = 0.4
33
tag_date = 0

setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"""
77
:authors: co0lc0der
88
:license: MIT
9-
:copyright: (c) 2022-2023 co0lc0der
9+
:copyright: (c) 2022-2024 co0lc0der
1010
"""
1111

12-
version = '0.3.6'
12+
version = '0.4'
1313

1414
with open('README.md', encoding='utf-8') as f:
1515
long_description = f.read()
@@ -43,16 +43,18 @@
4343
'Topic :: Database :: Database Engines/Servers',
4444
'License :: OSI Approved :: MIT License',
4545
'Operating System :: OS Independent',
46-
'Intended Audience :: End Users/Desktop',
4746
'Intended Audience :: Developers',
4847
'Programming Language :: Python',
4948
'Programming Language :: Python :: 3',
5049
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
5251
'Programming Language :: Python :: 3.9',
5352
'Programming Language :: Python :: 3.10',
53+
'Programming Language :: Python :: 3.11',
54+
'Programming Language :: Python :: 3.12',
5455
'Programming Language :: Python :: Implementation :: PyPy',
5556
'Programming Language :: Python :: Implementation :: CPython',
56-
'Programming Language :: SQL'
57+
'Programming Language :: SQL',
58+
'Typing :: Typed'
5759
]
5860
)

simple_query_builder/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
from .querybuilder import *
88

99
__author__ = 'co0lc0der'
10-
__version__ = '0.3.6'
10+
__version__ = '0.4'
1111
__email__ = '[email protected]'

0 commit comments

Comments
 (0)