diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 7c1288a2c9..29fba14b2d 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,11 +1,23 @@ # Unreleased version +## Backward incompatibility + +## Deprecations + +## New additions + +## Fixes and improvements + + +# v2.3.0 ## Backward incompatibility ## Deprecations ## New additions -* `snow sql` command supports now client-side templating of queries. +* `snow sql` command supports now client-side templating of queries +* New `snow sql` functionality: + * `-D/--data` allows variable substitutions in a SQL input (client-side query templating) * New `snow app deploy` functionality: * Passing files and directories as arguments syncs these only: `snow app deploy some-file some-dir`. * `--recursive` syncs all files and subdirectories recursively. diff --git a/src/snowflake/cli/__about__.py b/src/snowflake/cli/__about__.py index ebfa98ef9d..850213f9ca 100644 --- a/src/snowflake/cli/__about__.py +++ b/src/snowflake/cli/__about__.py @@ -1,3 +1,3 @@ from __future__ import annotations -VERSION = "2.3.0.dev0" +VERSION = "2.3.0rc0"