Skip to content

Commit eb897e8

Browse files
author
Peng Ren
committed
Bump version to 0.7.0
1 parent 8a890fe commit eb897e8

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
66
[![codecov](https://codecov.io/gh/passren/PyMongoSQL/branch/main/graph/badge.svg?token=2CTRL80NP2)](https://codecov.io/gh/passren/PyMongoSQL)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-purple.svg)](https://github.com/passren/PyMongoSQL/blob/0.1.2/LICENSE)
8-
[![Python Version](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
8+
[![Python Version](https://img.shields.io/badge/python-3.9|3.10|3.11|3.12|3.13|3.14-blue.svg)](https://www.python.org/downloads/)
99
[![Downloads](https://static.pepy.tech/badge/pymongosql/month)](https://pepy.tech/projects/pymongosql)
10-
[![MongoDB](https://img.shields.io/badge/MongoDB-7.0+-green.svg)](https://www.mongodb.com/)
11-
[![SQLAlchemy](https://img.shields.io/badge/SQLAlchemy-1.4+_2.0+-darkgreen.svg)](https://www.sqlalchemy.org/)
12-
[![Superset](https://img.shields.io/badge/Apache_Superset-1.0+-blue.svg)](https://superset.apache.org/docs/6.0.0/configuration/databases)
10+
[![MongoDB](https://img.shields.io/badge/MongoDB-7.0+|8.0+-green.svg)](https://www.mongodb.com/)
11+
[![SQLAlchemy](https://img.shields.io/badge/SQLAlchemy-1.4+|2.0+-darkgreen.svg)](https://www.sqlalchemy.org/)
12+
[![Superset](https://img.shields.io/badge/Apache_Superset->1.0-blue.svg)](https://superset.apache.org/docs/6.0.0/configuration/databases)
1313

1414
PyMongoSQL is a Python [DB API 2.0 (PEP 249)](https://www.python.org/dev/peps/pep-0249/) client for [MongoDB](https://www.mongodb.com/). It provides a familiar SQL interface to MongoDB, allowing developers to use SQL to interact with MongoDB collections.
1515

@@ -35,7 +35,7 @@ PyMongoSQL implements the DB API 2.0 interfaces to provide SQL-like access to Mo
3535

3636
## Requirements
3737

38-
- **Python**: 3.9, 3.10, 3.11, 3.12, 3.13+
38+
- **Python**: 3.9, 3.10, 3.11, 3.12, 3.13, 3.14
3939
- **MongoDB**: 7.0+
4040

4141
## Dependencies

pymongosql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if TYPE_CHECKING:
77
from .connection import Connection
88

9-
__version__: str = "0.6.0"
9+
__version__: str = "0.7.0"
1010

1111
# Globals https://www.python.org/dev/peps/pep-0249/#globals
1212
apilevel: str = "2.0"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ maintainers = [
1616
]
1717
keywords = ["mongodb", "sql", "database", "dbapi", "nosql"]
1818
classifiers = [
19-
"Development Status :: 3 - Alpha",
19+
"Development Status :: 4 - Beta",
2020
"Intended Audience :: Developers",
2121
"License :: OSI Approved :: MIT License",
2222
"Operating System :: OS Independent",
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
"Topic :: Database",
3031
"Topic :: Database :: Database Engines/Servers",
3132
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)