Skip to content

Commit

Permalink
Merge pull request #204 from xnuinside/release_v0.31.0
Browse files Browse the repository at this point in the history
release 0.31.0
  • Loading branch information
xnuinside authored Aug 22, 2023
2 parents 58be5d3 + 79336cb commit b98d00a
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
needs: [flake8_py3]
strategy:
matrix:
python: [3.7, 3.8, 3.9, '3.10']
python: [3.7, 3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
**v0.31.0**
### Fixes:
1. Move inline flag in regexp (issue with python 3.11) - https://github.com/xnuinside/simple-ddl-parser/pull/200
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/199

### Improvements:
1. Added `Snowflake Table DDL support of WITH MASKING POLICY column definition` - https://github.com/xnuinside/simple-ddl-parser/issues/201


### Updates:
1. All deps updated to the latest versions.

**v0.30.0**
### Fixes:

Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,18 @@ https://github.com/dmaresma


## Changelog
**v0.31.0**
### Fixes:
1. Move inline flag in regexp (issue with python 3.11) - https://github.com/xnuinside/simple-ddl-parser/pull/200
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/199

### Improvements:
1. Added `Snowflake Table DDL support of WITH MASKING POLICY column definition` - https://github.com/xnuinside/simple-ddl-parser/issues/201


### Updates:
1. All deps updated to the latest versions.

**v0.30.0**
### Fixes:

Expand Down
32 changes: 30 additions & 2 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,14 @@ Snowflake Dialect statements


* CREATE .. CLONE statements for table, database and schema
* CREATE TABLE [or REPLACE] [ TRANSIET | TEMPORARY ] .. CLUSTER BY ..
* CREATE TABLE [or REPLACE] [ TRANSIENT | TEMPORARY ] .. CLUSTER BY ..
* CONSTRAINT .. [NOT] ENFORCED
* COMMENT = in CREATE TABLE & CREATE SCHEMA statements
* WITH MASKING POLICY
* WITH TAG
* DATA_RETENTION_TIME_IN_DAYS
* MAX_DATA_EXTENSION_TIME_IN_DAYS
* CHANGE_TRACKING

BigQuery
^^^^^^^^
Expand Down Expand Up @@ -554,11 +559,34 @@ for help with debugging & testing support for BigQuery dialect DDLs:
* https://github.com/kalyan939

for contributions in parser:
https://github.com/swiatek25
https://github.com/swiatek25
https://github.com/slurpyb
https://github.com/dmaresma

Changelog
---------

**v0.31.0**

Fixes:
^^^^^^


#. Move inline flag in regexp (issue with python 3.11) - https://github.com/xnuinside/simple-ddl-parser/pull/200
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/199

Improvements:
^^^^^^^^^^^^^


#. Added ``Snowflake Table DDL support of WITH MASKING POLICY column definition`` - https://github.com/xnuinside/simple-ddl-parser/issues/201

Updates:
^^^^^^^^


#. All deps updated to the latest versions.

**v0.30.0**

Fixes:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "simple-ddl-parser"
version = "0.30.0"
version = "0.31.0"
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 <xnuinside@gmail.com>"]
license = "MIT"
Expand All @@ -10,11 +10,11 @@ repository = "https://github.com/xnuinside/simple-ddl-parser"
classifiers = [
"Programming Language :: PL/SQL",
"Programming Language :: SQL",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
Expand Down

0 comments on commit b98d00a

Please sign in to comment.