Skip to content

Commit

Permalink
chore(release): version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsky committed Feb 28, 2020
1 parent 130eed1 commit 1234c3e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions setup.cfg
Expand Up @@ -4,6 +4,3 @@ test=pytest

[bdist_wheel]
universal = 1

[semantic_release]
version_variable = werobot/__init__.py:__version__
4 changes: 1 addition & 3 deletions tests/test_robot.py
Expand Up @@ -2,7 +2,6 @@

import hashlib
import time
import six
import os
import pytest

Expand Down Expand Up @@ -34,8 +33,7 @@ def test_signature_checker():
sign = [token, timestamp, nonce]
sign.sort()
sign = ''.join(sign)
if six.PY3:
sign = sign.encode()
sign = sign.encode()
sign = hashlib.sha1(sign).hexdigest()

assert robot.check_signature(timestamp, nonce, sign)
Expand Down
2 changes: 1 addition & 1 deletion werobot/__init__.py
@@ -1,4 +1,4 @@
__version__ = '1.10.1'
__version__ = '1.11.0'
__author__ = 'whtsky'
__license__ = 'MIT'

Expand Down

0 comments on commit 1234c3e

Please sign in to comment.