Skip to content

Commit

Permalink
bumped deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanderweele committed May 26, 2021
1 parent c6a5389 commit 3f4794e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dbml_sqlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .core import *
from .terminal import cli

__version__ = '0.3.1'
__version__ = '0.3.2'

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "DBML_SQLite"
version = "0.3.1"
version = "0.3.2"
description = "A package that provides a CLI tool and a functional API for converting dbml files to SQLite DDL."
authors = ["Dave VanderWeele <[email protected]>"]
repository = 'https://github.com/dvanderweele/DBML_SQLite'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dbml_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def SQLogger(inp):
s.write(inp)

def test_version():
assert __version__ == '0.3.1'
assert __version__ == '0.3.2'

def test_toSQLite():
assert isinstance(toSQLite(), str)
Expand Down

0 comments on commit 3f4794e

Please sign in to comment.