Skip to content

Commit 0234647

Browse files
authored
Merge pull request #10 from aaliddell/release-1.6.0
Release 1.6.0
2 parents b25dfe6 + 1e221d6 commit 0234647

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
Changelog
66
=========
77

8+
1.6.0
9+
-----
10+
11+
- Dropped support for Python 3.6
12+
- Fixed ``token_is_valid()`` accepting some invalid tokens
13+
14+
815
1.5.0
916
-----
1017

s2cell/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
from .s2cell import *
1818

19-
__version__ = '1.5.0'
19+
__version__ = '1.6.0'

tests/test_s2cell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def test_cell_id_is_valid_compat():
191191
('2ef0000000000000', True),
192192
('2ef00000000000000', False), # Too long
193193
('2efinvalid', False), # Invalid characters
194-
('86R', False), # Invalid hex
194+
('86R', False), # Invalid hex
195195
('2efx', False), # Incorrect use of X
196196
])
197197
def test_token_is_valid(token, is_valid):

0 commit comments

Comments
 (0)