Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenkov committed Sep 4, 2020
1 parent 7c3ceb9 commit 61197a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 1.7.0, 04/09/2018

* Add a blocking commit after each modification if autocommit is enabled. (PR [#94](https://github.com/RaRe-Technologies/sqlitedict/pull/94), [@endlisnis](https://github.com/endlisnis))
* Clean up license file names (PR [#99](https://github.com/RaRe-Technologies/sqlitedict/pull/99), [@r-barnes](https://github.com/r-barnes))
* support double quotes in table names (PR [#113](https://github.com/RaRe-Technologies/sqlitedict/pull/113), [@vcalv](https://github.com/vcalv))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(self):

setup(
name='sqlitedict',
version='1.6.0',
version='1.7.0',
description='Persistent dict in Python, backed up by sqlite3 and pickle, multithread-safe.',
long_description=read('README.rst'),

Expand Down
5 changes: 1 addition & 4 deletions sqlitedict.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@

from threading import Thread

try:
__version__ = __import__('pkg_resources').get_distribution('sqlitedict').version
except:
__version__ = '?'
__version__ = '1.7.0'

major_version = sys.version_info[0]
if major_version < 3: # py <= 2.x
Expand Down

0 comments on commit 61197a7

Please sign in to comment.