Skip to content

Commit

Permalink
see version 2.1.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Svinokur committed Jul 25, 2021
1 parent 65ad5ca commit 2f232d6
Show file tree
Hide file tree
Showing 6 changed files with 96 additions and 76 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ simple_sqlite/*.db
simple_sqlite/*.log
simple_sqlite/test/__pycache__/*.pyc
.DS_Store
simple_sqlite/util/__pycache__/*.pyc
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
[2.1.0] 25/07/2021
This code was written and tested on Python 3.9.6

# Added

- Added custom logger (No need to override root logger now)

# Other

- Removed some duplicated code

[2.0.0] 21/07/2021
This code was written and tested on Python 3.9.6

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='simple_sqlite',
version='2.0.0',
version='2.1.0',
description='This package can help you using sqlite3 library much easier and faster.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
4 changes: 1 addition & 3 deletions simple_sqlite/runSqliteTest.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import unittest
import os
import sys

import os.path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__))))
sys.path.insert(0,os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir)))

from test import settingTest
from test import sqliteTest
Expand Down
Loading

0 comments on commit 2f232d6

Please sign in to comment.