Skip to content
Snippets Groups Projects
Commit 1993e1d9 authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Update for new version

parent 6ed48e0b
Branches
Tags 0.3.2
No related merge requests found
...@@ -22,7 +22,7 @@ copyright = '2022, Brandon Rodriguez' ...@@ -22,7 +22,7 @@ copyright = '2022, Brandon Rodriguez'
author = 'Brandon Rodriguez' author = 'Brandon Rodriguez'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.3.1' release = '0.3.2'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -2,8 +2,15 @@ Version History ...@@ -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 0.3.1 - Bugfix Release
---------------------- ======================
* Various general bugfixes.
0.3.0 - Stable PostgreSQL Querying 0.3.0 - Stable PostgreSQL Querying
......
...@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__' ...@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__'
[project] [project]
name = "py-dbcn" name = "py-dbcn"
version = "0.3.1" version = "0.3.2"
description = "Connector for Pythonic interaction with multiple database types." description = "Connector for Pythonic interaction with multiple database types."
readme = "readme.md" readme = "readme.md"
authors = [{ name = "Brandon Rodriguez", email = "brodriguez8774@gmail.com"}] authors = [{ name = "Brandon Rodriguez", email = "brodriguez8774@gmail.com"}]
...@@ -24,9 +24,11 @@ classifiers = [ ...@@ -24,9 +24,11 @@ classifiers = [
keywords = [ keywords = [
"database", "database",
"mysql", "mysql",
"postgresql",
] ]
dependencies = [ dependencies = [
"mysqlclient", # "mysqlclient", # Required if connecting to MySQL databases.
# "psycopg2-binary", # Required if connecting to PostgreSQL databases.
] ]
requires-python = ">=3.7" requires-python = ">=3.7"
......
[metadata] [metadata]
name = py-dbcn name = py-dbcn
version = 0.3.1 version = 0.3.2
description = Connector for Pythonic interaction with multiple database types. description = Connector for Pythonic interaction with multiple database types.
long_description = file: readme.md long_description = file: readme.md
url = https://github.com/brodriguez8774/py-dbcn url = https://github.com/brodriguez8774/py-dbcn
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment