From 497a0f4a8710320b024f7769a5eb664602c00366 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 17 Oct 2013 11:28:05 +0200 Subject: [PATCH] bump release to 0.1.8 --- MANIFEST.in | 1 - README.rst => README.txt | 0 rfc3161/__init__.py | 2 +- setup.py | 3 ++- 4 files changed, 3 insertions(+), 3 deletions(-) rename README.rst => README.txt (100%) diff --git a/MANIFEST.in b/MANIFEST.in index d37975d..9607566 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,3 @@ include tests/*.py recursive-include data *.crt recursive-include spec *.asn88 -include README.rst diff --git a/README.rst b/README.txt similarity index 100% rename from README.rst rename to README.txt diff --git a/rfc3161/__init__.py b/rfc3161/__init__.py index 2367567..18ec20e 100644 --- a/rfc3161/__init__.py +++ b/rfc3161/__init__.py @@ -2,4 +2,4 @@ from types import * from constants import * from api import * -VERSION = '0.1.7' +VERSION = '0.1.8' diff --git a/setup.py b/setup.py index 2a429e9..c720d24 100755 --- a/setup.py +++ b/setup.py @@ -23,8 +23,9 @@ class TestCommand(Command): t.run(tests) setup(name='rfc3161', - version='0.1.7', + version='0.1.8', license='MIT', + url='https://dev.entrouvert.org/projects/python-rfc3161', description='Python implementation of the RFC3161 specification, using pyasn1', author='Benjamin Dauvergne', author_email='bdauvergne@entrouvert.com',