We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bff103 commit 0592cfdCopy full SHA for 0592cfd
3 files changed
dbml_sqlite/__init__.py
@@ -1,5 +1,5 @@
1
from .core import *
2
from .terminal import cli
3
4
-__version__ = '0.3.0'
+__version__ = '0.3.1'
5
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "DBML_SQLite"
-version = "0.3.0"
+version = "0.3.1"
description = "A package that provides a CLI tool and a functional API for converting dbml files to SQLite DDL."
authors = ["Dave VanderWeele <weele.me@gmail.com>"]
6
repository = 'https://github.com/dvanderweele/DBML_SQLite'
tests/test_dbml_sqlite.py
@@ -47,7 +47,7 @@ def SQLogger(inp):
47
s.write(inp)
48
49
def test_version():
50
- assert __version__ == '0.3.0'
+ assert __version__ == '0.3.1'
51
52
def test_toSQLite():
53
assert isinstance(toSQLite(), str)
0 commit comments