Skip to content

Commit

Permalink
v0.29.0 fix some errors + new feature
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuinside committed Nov 20, 2022
1 parent d87c078 commit d258c2a
Show file tree
Hide file tree
Showing 12 changed files with 459 additions and 1,261 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ dist/
simple_ddl_parser.egg-info/
simple_ddl_parser/parser.out
simple_ddl_parser/dialects/__pycache__
.vscode/
.vscode/
poetry.lock
13 changes: 13 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
**v0.29.0**

### Fixes
1. AUTOINCREMENT statement now parsed validly same way as AUTO_INCREMENT and showed up in output as 'autoincrement' property of the column
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/170
2. Fix issue ' TypeError argument of type 'NoneType' is not iterable' on some foreigen keys https://github.com/xnuinside/simple-ddl-parser/issues/148

### New Features

1. Support for non-numeric column type parameters https://github.com/xnuinside/simple-ddl-parser/issues/171
It shows in column attribute 'type_parameters'.


**v0.28.1**
Imporvements:
1. Lines started with INSERT INTO statement now successfully ignored by parser (so you can keep them in ddl - they will be just skiped)
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,19 @@ https://github.com/swiatek25


## Changelog
**v0.29.0**

### Fixes
1. AUTOINCREMENT statement now parsed validly same way as AUTO_INCREMENT and showed up in output as 'autoincrement' property of the column
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/170
2. Fix issue ' TypeError argument of type 'NoneType' is not iterable' on some foreigen keys https://github.com/xnuinside/simple-ddl-parser/issues/148

### New Features

1. Support for non-numeric column type parameters https://github.com/xnuinside/simple-ddl-parser/issues/171
It shows in column attribute 'type_parameters'.


**v0.28.1**
Imporvements:
1. Lines started with INSERT INTO statement now successfully ignored by parser (so you can keep them in ddl - they will be just skiped)
Expand Down
17 changes: 17 additions & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,23 @@ https://github.com/swiatek25
Changelog
---------

**v0.29.0**

Fixes
^^^^^


#. AUTOINCREMENT statement now parsed validly same way as AUTO_INCREMENT and showed up in output as 'autoincrement' property of the column
Fix for: https://github.com/xnuinside/simple-ddl-parser/issues/170
#. Fix issue ' TypeError argument of type 'NoneType' is not iterable' on some foreigen keys https://github.com/xnuinside/simple-ddl-parser/issues/148

New Features
^^^^^^^^^^^^


#. Support for non-numeric column type parameters https://github.com/xnuinside/simple-ddl-parser/issues/171
It shows in column attribute 'type_parameters'.

**v0.28.1**
Imporvements:

Expand Down
Loading

0 comments on commit d258c2a

Please sign in to comment.