From 0dc24028c507dede7cf130bbb6af740baced20bb Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 27 May 2015 15:17:22 -0500 Subject: [PATCH] Update information for v0.2.2 --- HISTORY.rst | 7 +++++++ rfc3986/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f84da80..ac07da4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,10 @@ +0.2.2 -- 2015-05-27 +------------------- + +- Update the regular name regular expression to accept all of the characters + allowed in the RFC. Closes bug #11 (Thanks Viktor Haag). Previously URIs + similar to "http://http-bin.org" would be considered invalid. + 0.2.1 -- 2015-03-20 ------------------- diff --git a/rfc3986/__init__.py b/rfc3986/__init__.py index 2830c10..14d0ea0 100644 --- a/rfc3986/__init__.py +++ b/rfc3986/__init__.py @@ -29,7 +29,7 @@ __author__ = 'Ian Cordasco' __author_email__ = 'ian.cordasco@rackspace.com' __license__ = 'Apache v2.0' __copyright__ = 'Copyright 2014 Rackspace' -__version__ = '0.2.1' +__version__ = '0.2.2' from .api import (URIReference, uri_reference, is_valid_uri, normalize_uri)