Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanunderwood committed Jun 14, 2015
1 parent e4658e5 commit 8b1bf90
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 @@ -33,7 +33,7 @@ from cpython cimport bool
from libc.stdlib cimport realloc, malloc, free
from libc.string cimport memcpy

__version__ = "1.0.2"
__version__ = ("Cython", 1, 0, 3)

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 @@ -19,7 +19,7 @@
same rencode version throughout your project.
"""

__version__ = '1.0.2'
__version__ = ("Python", 1, 0, 3)
__all__ = ['dumps', 'loads']

# Original bencode module by Petru Paler, et al.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _unavailable(self, exc):

setup(
name="rencode",
version="1.0.2",
version="1.0.3",
packages=["rencode"],
description=description,
author="Andrew Resch",
Expand Down

0 comments on commit 8b1bf90

Please sign in to comment.