Skip to content

Commit

Permalink
Merge pull request #10 from aaliddell/release-1.6.0
Browse files Browse the repository at this point in the history
Release 1.6.0
  • Loading branch information
aaliddell committed Mar 9, 2022
2 parents b25dfe6 + 1e221d6 commit 0234647
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
Changelog
=========

1.6.0
-----

- Dropped support for Python 3.6
- Fixed ``token_is_valid()`` accepting some invalid tokens


1.5.0
-----

Expand Down
2 changes: 1 addition & 1 deletion s2cell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

from .s2cell import *

__version__ = '1.5.0'
__version__ = '1.6.0'
2 changes: 1 addition & 1 deletion tests/test_s2cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_cell_id_is_valid_compat():
('2ef0000000000000', True),
('2ef00000000000000', False), # Too long
('2efinvalid', False), # Invalid characters
('86R', False), # Invalid hex
('86R', False), # Invalid hex
('2efx', False), # Incorrect use of X
])
def test_token_is_valid(token, is_valid):
Expand Down

0 comments on commit 0234647

Please sign in to comment.