diff --git a/changelog.txt b/changelog.txt index 1f11694..36fe350 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +=============================================================================== + v1.0.1 +=============================================================================== +Added: Add dictionary representations of Path, Query, Fragment, and furl objects + via an asdict() method. + ================================================================================ v1.0.0 ================================================================================ diff --git a/furl/__init__.py b/furl/__init__.py index 2bdc285..d0c3822 100644 --- a/furl/__init__.py +++ b/furl/__init__.py @@ -13,7 +13,7 @@ from .furl import * __title__ = 'furl' -__version__ = '1.0.0' +__version__ = '1.0.1' __license__ = 'Unlicense' __author__ = 'Arthur Grunseid' __contact__ = 'grunseid@gmail.com'