Skip to content

Commit b415e03

Browse files
authored
feat: switch development status to beta (#149)
1 parent b390fac commit b415e03

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Cloud SQL Connector for Python Drivers
2-
**Warning**: This project is currently in _alpha_, and releases may contain breaking API changes.
2+
**Warning**: This project is currently in _beta_. Please [open an issue](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/issues/new/choose) if you would like to report a bug or documentation issue, request a feature, or have a question.
33

44
The Cloud SQL Python Connector is a library that can be used alongside a database driver to allow users with sufficient permissions to connect to a Cloud SQL
55
database without having to manually allowlist IPs or manage SSL certificates.

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
exec(fp.read(), version)
4242
version = version["__version__"]
4343

44-
release_status = "Development Status :: 3 - Alpha"
44+
release_status = "Development Status :: 4 - Beta"
4545
core_dependencies = [
4646
"aiohttp",
4747
"cryptography",
@@ -63,12 +63,14 @@
6363
classifiers=[
6464
release_status,
6565
"Intended Audience :: Developers",
66-
"Development Status :: 3 - Alpha",
66+
"Development Status :: 4 - Beta",
6767
"Intended Audience :: Developers",
6868
"License :: OSI Approved :: Apache Software License",
6969
"Programming Language :: Python",
7070
"Programming Language :: Python :: 3.6",
7171
"Programming Language :: Python :: 3.7",
72+
"Programming Language :: Python :: 3.8",
73+
"Programming Language :: Python :: 3.9",
7274
],
7375
platforms="Posix; MacOS X; Windows",
7476
packages=packages,

0 commit comments

Comments
 (0)