From 25157c7b9a9ae08b2cfb82e3c81c41e0409a5a77 Mon Sep 17 00:00:00 2001 From: Ansgar Grunseid Date: Sun, 30 Sep 2018 23:40:18 -0700 Subject: [PATCH] Tweak changelog entry. --- changelog.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9a98efd..179812e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,8 +1,8 @@ ================================================================================ v2.0.0 (unreleased) ================================================================================ -Added: All URL components to furl()'s constructor. E.g. - f = furl(scheme='http', host='host', path='/lolsup'). +Added: All URL components (scheme, host, path, etc) to furl()'s constructor as + keyword arguments. E.g. f = furl(scheme='http', host='host', path='/lolsup'). Changed: furl.__truediv__() and Path.__truediv__() now mirror Pathlib.__truediv__()'s behavior and return a new instance. The original instance is no longer modified. Old behavior: f = furl('1'); f / '2' -> str(f)