diff --git a/CHANGELOG.md b/CHANGELOG.md index 0290b03..c47a577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.0.10 +- New: Sticky notes syntax (DBML v3.2.0) +- Fix: Table header color was not rendered in `dbml()` (thanks @tristangrebot for the contribution) +- New: allow array column types (DBML v3.1.0) +- New: allow double quotes in expressions (DBML v3.1.2) +- Fix: recursion in object equality check +- New: don't allow duplicate refs even if they have different inline method (DBML v3.1.6) + # 1.0.9 - Fix: enum collision from different schemas. Thanks @ewdurbin for the contribution diff --git a/README.md b/README.md index bec1991..2f1e426 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # DBML parser for Python -*Compliant with DBML **v2.6.1** syntax* +*Compliant with DBML **v3.2.0** syntax* PyDBML is a Python parser and builder for [DBML](https://www.dbml.org) syntax. diff --git a/setup.py b/setup.py index 0aa37c5..bc65cb8 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ description=SHORT_DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', - version='1.0.9', + version='1.0.10', author='Daniil Minukhin', author_email='ddddsa@gmail.com', url='https://github.com/Vanderhoof/PyDBML',