From 3f0d621c5a366eb555f1ef5b23de1b7aa1881815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Roztoc=CC=8Cil?= Date: Sat, 25 Feb 2012 14:34:41 +0100 Subject: [PATCH] Fixed a typo. --- httpie/httpie.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/httpie/httpie.py b/httpie/httpie.py index ebd1d47d..9b6c1dbd 100755 --- a/httpie/httpie.py +++ b/httpie/httpie.py @@ -10,7 +10,7 @@ from .pretty import prettify __author__ = 'Jakub Roztocil' -__version__ = '0.1' +__version__ = '0.1.1' DEFAULT_UA = 'HTTPie/%s' % __version__ diff --git a/setup.py b/setup.py index db60cbef..debf950e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup -setup(name='httpie',version='0.1', +setup(name='httpie',version='0.1.1', description='cURL for humans', url='https://github.com/jkbr/httpie', author='Jakub Roztocil',