diff --git a/docs/source/conf.py b/docs/source/conf.py index 5f3e5cfdb68722ad490f6806e109023e014d51f0..0b6d5476cc61446c86e610ea9a2af5718308a55c 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.2.0' +release = '0.3.0' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 78230df9a7229bae92a552f137357c2535af5da3..68e855128adf8e76b2c413ee21aaf43a82afdf1d 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,6 +2,35 @@ Version History *************** +0.3.0 - Stable PostgreSQL Querying +================================== + +* **MySQL** and **PostgreSQL** are both implemented and thoroughly tested. Both + databases implement the following query types (at each of the + Database/Table/Record levels, where appropriate): + + * CREATE + * SHOW + * DESCRIBE + * USE + * SELECT + * INSERT + * INSERT MANY + * UPDATE + * UPDATE MANY + * DELETE + * TRUNCATE + +* Basic aggregation functions have been confirmed to work in both database + types. +* Syntax to call either database from this package is the same. Aka, goal of + being database-agnostic is currently being met. +* Query validation logic is in a better state than version 0.2.0, but still not + as robust as desired. +* Documentation describes most relevant end-user functionality. But is still not + 100% complete as of writing this. + + 0.2.0 - Stable MySQL Querying ============================= diff --git a/pyproject.toml b/pyproject.toml index 04727eeaf9e4b168b2e81df0c5ab4742f10877b4..a2c00049d22fcaa7ee3ee3e5f387e63735a82283 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__' [project] name = "py-dbcn" -version = "0.2.0" +version = "0.3.0" description = "Connector for Pythonic interaction with multiple database types." readme = "readme.md" authors = [{ name = "Brandon Rodriguez", email = "brodriguez8774@gmail.com"}] diff --git a/setup.cfg b/setup.cfg index 313bb38c0782fe5b50250cc37b6a104a4680ea60..062dc58930b5a7a86830e9aa46b696c8e3eabc30 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = py-dbcn -version = 0.2.0 +version = 0.3.0 description = Connector for Pythonic interaction with multiple database types. long_description = file: readme.md url = https://github.com/brodriguez8774/py-dbcn