diff --git a/CHANGELOG.md b/CHANGELOG.md index b6d61ab5d1d..9231212f625 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # Release History -## 1.10.0 (TBD) +## 1.10.0 (2023-11-03) ### New Features + - Added support for managing case sensitivity in `DataFrame.to_local_iterator()`. - Added support for specifying vectorized UDTF's input column names by using the optional parameter `input_names` in `UDTFRegistration.register/register_file` and `functions.pandas_udtf`. By default, `RelationalGroupedDataFrame.applyInPandas` will infer the column names from current dataframe schema. +- Add `sql_error_code` and `raw_message` attributes to `SnowflakeSQLException` when it is caused by a SQL exception. ### Bug Fixes @@ -19,7 +21,6 @@ - The `format` argument changed from optional to required. - The returned result changed from a date object to a date-formatted string. - When a window function, or a sequence-dependent data generator (`normal`, `zipf`, `uniform`, `seq1`, `seq2`, `seq4`, `seq8`) function is used, the sort and filter operation will no longer be flattened when generating the query. -- Add `sql_error_code` and `raw_message` attributes to `SnowflakeSQLException` when it is caused by a SQL exception. ## 1.9.0 (2023-10-13) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 5539fc9a11a..e2ca7908adf 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "snowflake-snowpark-python" %} -{% set version = "1.9.0" %} +{% set version = "1.10.0" %} package: name: {{ name|lower }} diff --git a/src/snowflake/snowpark/version.py b/src/snowflake/snowpark/version.py index d27aaabdbbc..fd73b7a4228 100644 --- a/src/snowflake/snowpark/version.py +++ b/src/snowflake/snowpark/version.py @@ -4,4 +4,4 @@ # # Update this for the versions -VERSION = (1, 9, 0) +VERSION = (1, 10, 0)