Skip to content

Commit 2b2cbfb

Browse files
committed
update changelog and bump version
1 parent c02236e commit 2b2cbfb

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.2.0
2+
- Fix: Temporarily disable unicode characters support in identifiers for performance (#59)
3+
14
# 1.1.4
25
- Fix: Remove trailing comma in Enum SQL (#58 thanks @ralfschulze for reporting)
36

prof.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from pydbml import PyDBML
2+
from pathlib import Path
3+
4+
5+
if __name__ == '__main__':
6+
d = PyDBML(Path('test_schema.dbml'))
7+
print(d)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
description=SHORT_DESCRIPTION,
1717
long_description=LONG_DESCRIPTION,
1818
long_description_content_type='text/markdown',
19-
version='1.1.4',
19+
version='1.2.0',
2020
author='Daniil Minukhin',
2121
author_email='ddddsa@gmail.com',
2222
url='https://github.com/Vanderhoof/PyDBML',

0 commit comments

Comments
 (0)