Bumped version number

This commit is contained in:
Georg Richter
2020-06-24 08:58:37 +02:00
parent 5f2a2e19a2
commit 2ee51a0e90
2 changed files with 6 additions and 2 deletions

View File

@ -54,7 +54,11 @@ PyDoc_STRVAR(
"\n"
"Parameter:\n"
"configuration: dictionary\n\n"
"Sets the connection configuration for the connection pool."
"Sets the connection configuration for the connection pool.\n"
"For valid connection arguments check the mariadb.connect() method.\n\n"
"Note: This method doesn't create connections in the pool.\n"
"To fill the pool one has to use add_connection() ḿethod."
);
PyDoc_STRVAR(

View File

@ -29,7 +29,7 @@ PY_MARIADB_AUTHORS= "Georg Richter"
PY_MARIADB_MAJOR_VERSION=1
PY_MARIADB_MINOR_VERSION=0
PY_MARIADB_PATCH_VERSION=0
PY_MARIADB_PATCH_VERSION=1
# PY_MARIADB_PRE_RELEASE_SEGMENT=""
PY_MARIADB_VERSION= "%s.%s.%s" % (PY_MARIADB_MAJOR_VERSION, PY_MARIADB_MINOR_VERSION, PY_MARIADB_PATCH_VERSION)