Skip to content

Commit 7a8c274

Browse files
authored
Merge pull request #44 from bbayles/version-4.0.0
Notes for version 4.0.0
2 parents d5bfbc9 + b87cf9e commit 7a8c274

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '3.0.0'
29+
release = '4.0.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

docs/versions.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Version history
22
===============
33

4+
* `Version 4.0.0 <https://github.com/dw/python-pure-cdb/releases/tag/v4.0.0>`_
5+
* This package is now marked as supporting Python 3.6 and above
6+
* Fixed a bug related to items that hash to the value 0 (thanks to pwlodarczyk92)
47
* `Version 3.1.1 <https://github.com/dw/python-pure-cdb/releases/tag/v3.1.1>`_
58
* Fixed a bug with handling hashing errors (thanks to maikroeder)
69
* `Version 3.1.0 <https://github.com/dw/python-pure-cdb/releases/tag/v3.1.0>`_

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
keywords='cdb file format appengine database db',
2626
license='MIT',
2727
name='pure-cdb',
28-
version='3.1.1',
28+
version='4.0.0',
2929
packages=find_packages(include=['cdblib']),
3030
ext_modules=ext_modules,
3131
install_requires=[],
32-
python_requires='>=3.4',
32+
python_requires='>=3.6',
3333
test_suite='tests',
3434
tests_require=['flake8'],
3535
entry_points={

0 commit comments

Comments
 (0)