Skip to content

Commit 55b1915

Browse files
author
Abhishek Singh
committed
Bumped to v1.1.2
1 parent ea1c589 commit 55b1915

5 files changed

Lines changed: 3 additions & 19 deletions

File tree

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,12 @@ Key Features
2828
- Generic authorization policy during server startup
2929
- Schedule regular backups for on-disk databases
3030

31-
3231
# Install
3332

3433
```commandline
3534
pip install -U sqlite_rx
3635
```
3736

38-
## Supported OS
39-
- Linux
40-
- MacOS
41-
- Windows
42-
43-
## Supported Python Platforms
44-
- CPython 3.6, 3.7, 3.8, 3.9
45-
- PyPy3.6
46-
47-
4837
# Server
4938

5039
`SQLiteServer` runs in a single thread and follows an event-driven concurrency model (using `tornado's` event loop) which minimizes the cost of concurrent client connections. Following snippet shows how you can start the server process.
@@ -72,7 +61,6 @@ if __name__ == '__main__':
7261

7362
```
7463

75-
7664
# Client
7765

7866
The following snippet shows how you can instantiate an `SQLiteClient` and execute a simple `CREATE TABLE` query.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sqlite_rx
3-
version = 1.1.0
3+
version = 1.1.2
44
description = Python SQLite Client and Server
55
long_description = file: README.md
66
long_description_content_type = text/markdown

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
99
long_description = f.read()
1010

11-
VERSION = '1.1.0'
11+
VERSION = '1.1.2'
1212
DISTNAME = 'sqlite_rx'
1313
LICENSE = 'MIT License'
1414
AUTHOR = 'Abhishek Singh'

sqlite_rx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.1.0"
1+
__version__ = "1.1.2"
22
__author__ = "Abhishek Singh"
33
__authoremail__ = "abhishek.singh20141@gmail.com"
44

sqlite_rx/cli/client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
import logging.config
22

33
import typing
4-
import platform
5-
6-
from pprint import pformat
74

85
import click
9-
import click_repl
106
import rich.console
117
import rich.markup
128
import rich.progress

0 commit comments

Comments
 (0)