From b4dfd80d7051a8677969cd452d7fb10ce667bfcb Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 28 Feb 2016 21:34:06 -0800 Subject: [PATCH] Update version --- rencode/rencode.pyx | 2 +- rencode/rencode_orig.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rencode/rencode.pyx b/rencode/rencode.pyx index dc92fb6..e8065a4 100644 --- a/rencode/rencode.pyx +++ b/rencode/rencode.pyx @@ -32,7 +32,7 @@ from cpython cimport bool from libc.stdlib cimport realloc, malloc, free from libc.string cimport memcpy -__version__ = ("Cython", 1, 0, 3) +__version__ = ("Cython", 1, 0, 4) cdef long long data_length = 0 cdef bool _decode_utf8 = False diff --git a/rencode/rencode_orig.py b/rencode/rencode_orig.py index 0299c7c..84740bc 100644 --- a/rencode/rencode_orig.py +++ b/rencode/rencode_orig.py @@ -19,7 +19,7 @@ same rencode version throughout your project. """ -__version__ = ("Python", 1, 0, 3) +__version__ = ("Python", 1, 0, 4) __all__ = ['dumps', 'loads'] # Original bencode module by Petru Paler, et al.