diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 56b477d..be55752 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,9 +1,10 @@ -**v1.5.3** +**v1.5.4** ### Improvements #### Snowflake : 1. In Snowflake add `pattern` token for external table statement, and improve location rendering 2. +**v1.5.3** ### Fixes 1. In Snowflake unexpected error when STRIP_OUTER_ARRAY property in file_format statement - https://github.com/xnuinside/simple-ddl-parser/issues/276 diff --git a/README.md b/README.md index 9c7e1c0..678b985 100644 --- a/README.md +++ b/README.md @@ -489,10 +489,16 @@ for help with debugging & testing support for BigQuery dialect DDLs: * https://github.com/kalyan939 ## Changelog +**v1.5.4** +### Improvements +#### Snowflake : +1. In Snowflake add `pattern` token for external table statement, and improve location rendering +2. + **v1.5.3** ### Fixes -1. In Snowflake Fix unexpected behaviour when file_format name given - https://github.com/xnuinside/simple-ddl-parser/issues/273 +1. In Snowflake unexpected error when STRIP_OUTER_ARRAY property in file_format statement - https://github.com/xnuinside/simple-ddl-parser/issues/276 2. **v1.5.2** @@ -500,6 +506,9 @@ for help with debugging & testing support for BigQuery dialect DDLs: #### MySQL 1. Added support for COLLATE - https://github.com/xnuinside/simple-ddl-parser/pull/266/files +### Fixes + +1. In Snowflake Fix unexpected behaviour when file_format name given - https://github.com/xnuinside/simple-ddl-parser/issues/273 **v1.5.1** ### Improvements diff --git a/docs/README.rst b/docs/README.rst index 64797bd..8f1dd04 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -555,13 +555,25 @@ for help with debugging & testing support for BigQuery dialect DDLs: Changelog --------- +**v1.5.4** + +Improvements +^^^^^^^^^^^^ + +Snowflake : +~~~~~~~~~~~ + + +#. In Snowflake add ``pattern`` token for external table statement, and improve location rendering + 2. + **v1.5.3** Fixes ^^^^^ -#. In Snowflake Fix unexpected behaviour when file_format name given - https://github.com/xnuinside/simple-ddl-parser/issues/273 +#. In Snowflake unexpected error when STRIP_OUTER_ARRAY property in file_format statement - https://github.com/xnuinside/simple-ddl-parser/issues/276 2. **v1.5.2** @@ -575,6 +587,12 @@ MySQL #. Added support for COLLATE - https://github.com/xnuinside/simple-ddl-parser/pull/266/files +Fixes +^^^^^ + + +#. In Snowflake Fix unexpected behaviour when file_format name given - https://github.com/xnuinside/simple-ddl-parser/issues/273 + **v1.5.1** Improvements diff --git a/pyproject.toml b/pyproject.toml index 3b92965..6b01d27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simple-ddl-parser" -version = "1.5.3" +version = "1.5.4" description = "Simple DDL Parser to parse SQL & dialects like HQL, TSQL (MSSQL), Oracle, AWS Redshift, Snowflake, MySQL, PostgreSQL, etc ddl files to json/python dict with full information about columns: types, defaults, primary keys, etc.; sequences, alters, custom types & other entities from ddl." authors = ["Iuliia Volkova "] license = "MIT"