diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a71a228..63e4b8fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. *The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).* +## [3.6.1] - 2023-11-15 +### Added +- Allow passing snowflake schema as config or CLI parameter + ## [3.6.0] - 2023-09-06 ### Changed - Fixed bug introduced in version 3.5.0 where the session state was not reset after a user script was run. This resulted in schemachange updates to the metadata table failing in some cases. schemachange will now reset the session back to the default settings after each user script is run diff --git a/schemachange/cli.py b/schemachange/cli.py index 0ac248f4..31745f43 100644 --- a/schemachange/cli.py +++ b/schemachange/cli.py @@ -21,7 +21,7 @@ #region Global Variables # metadata -_schemachange_version = '3.6.0' +_schemachange_version = '3.6.1' _config_file_name = 'schemachange-config.yml' _metadata_database_name = 'METADATA' _metadata_schema_name = 'SCHEMACHANGE' diff --git a/setup.cfg b/setup.cfg index e168eb1c..b3f8ec01 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = schemachange -version = 3.6.0 +version = 3.6.1 description = A Database Change Management tool for Snowflake long_description = file: README.md long_description_content_type = text/markdown