We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02236e commit 2b2cbfbCopy full SHA for 2b2cbfb
3 files changed
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# 1.2.0
2
+- Fix: Temporarily disable unicode characters support in identifiers for performance (#59)
3
+
4
# 1.1.4
5
- Fix: Remove trailing comma in Enum SQL (#58 thanks @ralfschulze for reporting)
6
prof.py
@@ -0,0 +1,7 @@
+from pydbml import PyDBML
+from pathlib import Path
+if __name__ == '__main__':
+ d = PyDBML(Path('test_schema.dbml'))
7
+ print(d)
setup.py
@@ -16,7 +16,7 @@
16
description=SHORT_DESCRIPTION,
17
long_description=LONG_DESCRIPTION,
18
long_description_content_type='text/markdown',
19
- version='1.1.4',
+ version='1.2.0',
20
author='Daniil Minukhin',
21
author_email='ddddsa@gmail.com',
22
url='https://github.com/Vanderhoof/PyDBML',
0 commit comments