Skip to content

Commit

Permalink
Tag version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aresch committed Oct 21, 2018
1 parent 6be4b39 commit 53d72ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rencode/rencode.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ from cpython cimport bool
from libc.stdlib cimport realloc, free
from libc.string cimport memcpy

__version__ = ("Cython", 1, 0, 5)
__version__ = ("Cython", 1, 0, 6)

cdef long long data_length = 0
cdef bool _decode_utf8 = False
Expand Down
2 changes: 1 addition & 1 deletion rencode/rencode_orig.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
import sys
from threading import Lock

__version__ = ("Python", 1, 0, 5)
__version__ = ("Python", 1, 0, 6)
__all__ = ('dumps', 'loads')

py3 = sys.version_info[0] >= 3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _unavailable(self, exc):

setup(
name="rencode",
version="1.0.5",
version="1.0.6",
packages=["rencode"],
description="Web safe object pickling/unpickling",
long_description=open("README.md").read(),
Expand Down

0 comments on commit 53d72ac

Please sign in to comment.