From 8b622be23d40862471f9060c252ea2566446c2ff Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 20 Mar 2015 09:46:38 -0500 Subject: [PATCH] Release v0.2.1 --- HISTORY.rst | 5 ++++- rfc3986/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index cb8bf85..f84da80 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,10 +1,13 @@ -0.2.1 -- 2014-07-xx +0.2.1 -- 2015-03-20 ------------------- - Check that the bytes of an IPv4 Host Address are within the valid range. Otherwise, URIs like "http://256.255.255.0/v1/resource" are considered valid. +- Add 6 to the list of unreserved characters. It was previously missing. + Closes bug #9 + 0.2.0 -- 2014-06-30 ------------------- diff --git a/rfc3986/__init__.py b/rfc3986/__init__.py index 57255d9..2830c10 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.0' +__version__ = '0.2.1' from .api import (URIReference, uri_reference, is_valid_uri, normalize_uri)