Skip to content

Commit

Permalink
upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanderweele committed May 21, 2021
1 parent f99f15a commit 6f26385
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![lessqlite](https://github.com/dvanderweele/lessqlite/actions/workflows/test.yml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/dvanderweele/lessqlite/badge.svg?branch=main)](https://coveralls.io/github/dvanderweele/lessqlite?branch=main)

*v0.1.3*
*v0.1.4*

`lessqlite` is a free command-line utility written in Python providing a pager-based interface (like Unix `less`) for exploring, browsing, and scrolling through SQLite databases in your terminal.

Expand Down
Binary file added dist/lessqlite-0.1.4-py3-none-any.whl
Binary file not shown.
Binary file added dist/lessqlite-0.1.4.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion lessqlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .core import cli, schema, tables
__version__ = '0.1.0'
__version__ = '0.1.4'
31 changes: 16 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "lessqlite"
version = "0.1.3"
version = "0.1.4"
description = "A less-like command-line tool for paging through SQLite databases."
authors = ["Dave VanderWeele <[email protected]>"]
repository = 'https://github.com/dvanderweele/lessqlite'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_lessqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""

def test_version():
assert __version__ == '0.1.0'
assert __version__ == '0.1.4'

def test_cli():
runner = CliRunner()
Expand Down

0 comments on commit 6f26385

Please sign in to comment.