From 8b1bf905aded36f7d60b3a9d8cfb676540414396 Mon Sep 17 00:00:00 2001 From: Jonathan Underwood Date: Sun, 14 Jun 2015 14:14:09 +0100 Subject: [PATCH] Bump version to 1.0.3 --- rencode/rencode.pyx | 2 +- rencode/rencode_orig.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rencode/rencode.pyx b/rencode/rencode.pyx index 4228fb0..f72d367 100644 --- a/rencode/rencode.pyx +++ b/rencode/rencode.pyx @@ -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 diff --git a/rencode/rencode_orig.py b/rencode/rencode_orig.py index e3ebc7f..757339a 100644 --- a/rencode/rencode_orig.py +++ b/rencode/rencode_orig.py @@ -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. diff --git a/setup.py b/setup.py index 9af0080..a430e75 100644 --- a/setup.py +++ b/setup.py @@ -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",