From 76bec8df3e61e3ecdee6c4a879c15b0259509c26 Mon Sep 17 00:00:00 2001 From: xnuinside Date: Thu, 11 Jan 2024 08:55:47 +0300 Subject: [PATCH] up version --- README.md | 5 +++++ docs/README.rst | 9 +++++++++ pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75bbcad..b4464fb 100644 --- a/README.md +++ b/README.md @@ -486,6 +486,11 @@ for help with debugging & testing support for BigQuery dialect DDLs: ## Changelog +**v1.0.1** +### Minor Fixes +1. When using `normalize_names=True` do not remove `[]` from types like `decimal(21)[]`. +2. When using `normalize_names=True` ensure that `"complex"."type"` style names convert to `complex.type`. + **v1.0.0** In output structure was done important changes that can in theory breaks code. diff --git a/docs/README.rst b/docs/README.rst index f489cfb..a4c9319 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -549,6 +549,15 @@ for help with debugging & testing support for BigQuery dialect DDLs: Changelog --------- +**v1.0.1** + +Minor Fixes +^^^^^^^^^^^ + + +#. When using ``normalize_names=True`` do not remove ``[]`` from types like ``decimal(21)[]``. +#. When using ``normalize_names=True`` ensure that ``"complex"."type"`` style names convert to ``complex.type``. + **v1.0.0** In output structure was done important changes that can in theory breaks code. diff --git a/pyproject.toml b/pyproject.toml index 9afc091..3c014a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simple-ddl-parser" -version = "1.0.0" +version = "1.0.1" 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"