diff --git a/docs/source/conf.py b/docs/source/conf.py index 611103aabc01637bc777ab6d3ece5fb509763268..c0c9780c3ef0267802711362b05988aa31a4a41f 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 aec2049c588dd2a7bb301a57794b30606aba0918..aa49562118231fe29c681a6541f26121b8230a13 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 bf2a3b33c6db459c319955b884b444304e47c58f..629fde33169a4a16a1e4b617f23b05e96a2c41ff 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 17bd28752bc53993a0a8bb66e4a9e13c9294f58d..48ab7b1a2bab0e1b13ba7dd8d85f591b12839976 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