Skip to content

Commit 198c07c

Browse files
Merge pull request #102 from snowflakedb/sfc-gh-xhuang-patch-4
Release 1.0.11
2 parents 58c0e1b + 1cc2623 commit 198c07c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/End2EndTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ ubuntu-latest ]
15-
python-version: [ '3.8', '3.9', '3.10' ]
15+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
1616
steps:
1717
- name: Checkout Code
1818
uses: actions/checkout@v3

DESCRIPTION.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges
77

88
Release Notes
99
-------------------------------------------------------------------------------
10+
- v1.0.11 (June 17, 2025)
11+
12+
- Better handling to retry connection errors
13+
- Pin dependency package to newer version (snowflake-connector-python)
14+
1015
- v1.0.10 (November 14, 2024)
1116

1217
- Update readme for artifact validation using cosign

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from sys import version_info, exit
1111
# Define our list of installation dependencies
1212
DEPENDS = ["pyjwt",
13-
"snowflake-connector-python>=3.0.3",
13+
"snowflake-connector-python>=3.12.0",
1414
"furl",
1515
"cryptography",
1616
"requests<=2.32.3"]

snowflake/ingest/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
22
# Update this for the versions
3-
__version__ = '1.0.10'
3+
__version__ = '1.0.11'

0 commit comments

Comments
 (0)