Skip to content

Commit 1380e41

Browse files
SNOW-879809: Bumped up PythonConnector MINOR version from 3.0.4 to 3.1.0 (#1672)
1 parent 43b3e32 commit 1380e41

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

DESCRIPTION.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
88

99
# Release Notes
1010

11-
- v3.0.5(TBD)
11+
- v3.1.0(July 31,2023)
12+
1213
- Added a feature that lets you add connection definitions to the `connections.toml` configuration file. A connection definition refers to a collection of connection parameters, for example, if you wanted to define a connection named `prod``:
14+
1315
```toml
1416
[prod]
1517
account = "my_account"
@@ -42,6 +44,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
4244
- Allowed to pass `type_mapper` to `fetch_pandas_batches()` and `fetch_pandas_all()`.
4345
- Fixed a bug where pickle.dump segfaults during cache serialization in multi-threaded scenarios.
4446
- Improved retry logic for okta authentication to refresh token if authentication gets throttled.
47+
- Note that this release does not include the changes introduced in the previous 3.1.0a1 release. Those will be released at a later time.
4548

4649
- v3.0.4(May 23,2023)
4750
- Fixed a bug in which `cursor.execute()` could modify the argument statement_params dictionary object when executing a multistatement query.

src/snowflake/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Update this for the versions
22
# Don't change the forth version number from None
3-
VERSION = (3, 0, 4, None)
3+
VERSION = (3, 1, 0, None)

0 commit comments

Comments
 (0)