From ac7d3cf72dddda299ecd0364bac1600651547950 Mon Sep 17 00:00:00 2001 From: xnuinside Date: Mon, 25 Mar 2024 23:41:51 +0300 Subject: [PATCH] update README and version --- CHANGELOG.txt | 4 +++- README.md | 7 +++++++ docs/README.rst | 11 +++++++++++ pyproject.toml | 2 +- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e5fc20a..9609589 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,9 @@ **v1.0.4** ### Improvements 1. Support functions with schema prefix in `DEFAULT` and `CHECK` statements. https://github.com/xnuinside/simple-ddl-parser/issues/240 -2. Fix for REFERENCES NOT NULL - https://github.com/xnuinside/simple-ddl-parser/issues/239 +### Fixes +1. Fix for REFERENCES NOT NULL - https://github.com/xnuinside/simple-ddl-parser/issues/239 +2. Fix for snowflake stage name location format bug fix - https://github.com/xnuinside/simple-ddl-parser/pull/241 **v1.0.3** ### Improvements diff --git a/README.md b/README.md index dbff485..6a60472 100644 --- a/README.md +++ b/README.md @@ -486,6 +486,13 @@ for help with debugging & testing support for BigQuery dialect DDLs: ## Changelog +**v1.0.4** +### Improvements +1. Support functions with schema prefix in `DEFAULT` and `CHECK` statements. https://github.com/xnuinside/simple-ddl-parser/issues/240 +### Fixes +1. Fix for REFERENCES NOT NULL - https://github.com/xnuinside/simple-ddl-parser/issues/239 +2. Fix for snowflake stage name location format bug fix - https://github.com/xnuinside/simple-ddl-parser/pull/241 + **v1.0.3** ### Improvements 1. Fixed bug with `CREATE OR REPLACE SCHEMA`. diff --git a/docs/README.rst b/docs/README.rst index b445387..b06b113 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -549,6 +549,17 @@ for help with debugging & testing support for BigQuery dialect DDLs: Changelog --------- +**v1.0.4** + +Improvements +^^^^^^^^^^^^ + + +#. Support functions with schema prefix in ``DEFAULT`` and ``CHECK`` statements. https://github.com/xnuinside/simple-ddl-parser/issues/240 + ### Fixes +#. Fix for REFERENCES NOT NULL - https://github.com/xnuinside/simple-ddl-parser/issues/239 +#. Fix for snowflake stage name location format bug fix - https://github.com/xnuinside/simple-ddl-parser/pull/241 + **v1.0.3** Improvements diff --git a/pyproject.toml b/pyproject.toml index ad32ba4..c452dad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simple-ddl-parser" -version = "1.0.3" +version = "1.0.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"