From 1993e1d9c4af0329627edddf98c8193caebee008 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sun, 4 Jun 2023 16:00:58 -0400 Subject: [PATCH] Update for new version --- docs/source/conf.py | 2 +- docs/source/version_history.rst | 9 ++++++++- pyproject.toml | 6 ++++-- setup.cfg | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 611103a..c0c9780 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ copyright = '2022, Brandon Rodriguez' author = 'Brandon Rodriguez' # The full version, including alpha/beta/rc tags -release = '0.3.1' +release = '0.3.2' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index aec2049..aa49562 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,8 +2,15 @@ Version History *************** +0.3.2 - Bugfixes for PostgreSQL +=============================== +* Corrects some issues with PostgreSQL queries. +* Unfortunately breaks MySQL. Use 0.3.1 for MySQL for now. + + 0.3.1 - Bugfix Release ----------------------- +====================== +* Various general bugfixes. 0.3.0 - Stable PostgreSQL Querying diff --git a/pyproject.toml b/pyproject.toml index bf2a3b3..629fde3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__' [project] name = "py-dbcn" -version = "0.3.1" +version = "0.3.2" description = "Connector for Pythonic interaction with multiple database types." readme = "readme.md" authors = [{ name = "Brandon Rodriguez", email = "brodriguez8774@gmail.com"}] @@ -24,9 +24,11 @@ classifiers = [ keywords = [ "database", "mysql", + "postgresql", ] dependencies = [ - "mysqlclient", +# "mysqlclient", # Required if connecting to MySQL databases. +# "psycopg2-binary", # Required if connecting to PostgreSQL databases. ] requires-python = ">=3.7" diff --git a/setup.cfg b/setup.cfg index 17bd287..48ab7b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = py-dbcn -version = 0.3.1 +version = 0.3.2 description = Connector for Pythonic interaction with multiple database types. long_description = file: readme.md url = https://github.com/brodriguez8774/py-dbcn -- GitLab