Skip to content

Commit 2ee51a0

Browse files
committed
Bumped version number
1 parent 5f2a2e1 commit 2ee51a0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

include/docs/pool.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ PyDoc_STRVAR(
5454
"\n"
5555
"Parameter:\n"
5656
"configuration: dictionary\n\n"
57-
"Sets the connection configuration for the connection pool."
57+
"Sets the connection configuration for the connection pool.\n"
58+
"For valid connection arguments check the mariadb.connect() method.\n\n"
59+
"Note: This method doesn't create connections in the pool.\n"
60+
"To fill the pool one has to use add_connection() ḿethod."
61+
5862
);
5963

6064
PyDoc_STRVAR(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
PY_MARIADB_MAJOR_VERSION=1
3131
PY_MARIADB_MINOR_VERSION=0
32-
PY_MARIADB_PATCH_VERSION=0
32+
PY_MARIADB_PATCH_VERSION=1
3333
# PY_MARIADB_PRE_RELEASE_SEGMENT=""
3434

3535
PY_MARIADB_VERSION= "%s.%s.%s" % (PY_MARIADB_MAJOR_VERSION, PY_MARIADB_MINOR_VERSION, PY_MARIADB_PATCH_VERSION)

0 commit comments

Comments
 (0)