Skip to content

Commit

Permalink
SNOW-682115: Get ready to release 1.0.0 (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-yixie authored Nov 1, 2022
1 parent c61dbae commit 1ec8b19
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Release History
## 1.0.0 (2012-11-01)

This comment has been minimized.

Copy link
@mbkupfer

mbkupfer Nov 1, 2022

@sfc-gh-yixie since this is a new major release, according to semantic versioning specs, I just wanted to check if there were any breaking changes?

### New Features
- Added `Session.generator()` to create a new `DataFrame` using the Generator table function.
- Added a parameter `secure` to the functions that create a secure UDF or UDTF.


## 0.12.0 (2022-10-14)
### New Features
- Added new APIs for async job:
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "snowflake-snowpark-python" %}
{% set version = "0.12.0" %}
{% set version = "1.0.0" %}

package:
name: {{ name|lower }}
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
THIS_DIR = os.path.dirname(os.path.realpath(__file__))
SRC_DIR = os.path.join(THIS_DIR, "src")
SNOWPARK_SRC_DIR = os.path.join(SRC_DIR, "snowflake", "snowpark")
CONNECTOR_DEPENDENCY_VERSION = "2.7.12"
CONNECTOR_DEPENDENCY_VERSION = ">=2.7.12, <3.0.0"

# read the version
VERSION = ()
Expand All @@ -37,7 +37,7 @@
keywords="Snowflake db database cloud analytics warehouse",
url="https://www.snowflake.com/",
project_urls={
"Documentation": "https://docs.snowflake.com/en/developer-guide/snowpark/reference/python",
"Documentation": "https://docs.snowflake.com/en/developer-guide/snowpark/python/index.html",
"Source": "https://github.com/snowflakedb/snowpark-python",
"Issues": "https://github.com/snowflakedb/snowpark-python/issues",
"Changelog": "https://github.com/snowflakedb/snowpark-python/blob/main/CHANGELOG.md",
Expand All @@ -47,8 +47,8 @@
"setuptools>=40.6.0",
"wheel",
"cloudpickle>=1.6.0,<=2.0.0",
f"snowflake-connector-python>={CONNECTOR_DEPENDENCY_VERSION}",
"typing-extensions>=4.1.0",
f"snowflake-connector-python{CONNECTOR_DEPENDENCY_VERSION}",
"typing-extensions>=4.1.0, <5.0.0",
],
namespace_packages=["snowflake"],
# When a new package (directory) is added, we should also add it here
Expand All @@ -65,10 +65,10 @@
},
extras_require={
"pandas": [
f"snowflake-connector-python[pandas]>={CONNECTOR_DEPENDENCY_VERSION}",
f"snowflake-connector-python[pandas]{CONNECTOR_DEPENDENCY_VERSION}",
],
"secure-local-storage": [
f"snowflake-connector-python[secure-local-storage]>={CONNECTOR_DEPENDENCY_VERSION}",
f"snowflake-connector-python[secure-local-storage]{CONNECTOR_DEPENDENCY_VERSION}",
],
"development": [
"pytest",
Expand All @@ -79,7 +79,7 @@
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

# Update this for the versions
VERSION = (0, 12, 0)
VERSION = (1, 0, 0)

0 comments on commit 1ec8b19

Please sign in to comment.