Release v0.2.1

This commit is contained in:
Ian Cordasco
2015-03-20 09:46:38 -05:00
parent 4ebfcf5ec2
commit 8b622be23d
2 changed files with 5 additions and 2 deletions

View File

@@ -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
-------------------

View File

@@ -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)