diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ad2faa..725b626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,11 @@ +# v0.3.0 +* Removes dependencies on beautifulsoup and lxml +* Implements user agent digest authentication +* RetsHttpClient infers the RETS server's base url from the full login url +* parse_multipart ignores parts with 20403 No Object Found errors + +# v0.2.0 +* Added support for Python 3.3 or later + # v0.1.0 * Initial release diff --git a/rets/__init__.py b/rets/__init__.py index ee31b8e..4ec7d5b 100644 --- a/rets/__init__.py +++ b/rets/__init__.py @@ -2,7 +2,7 @@ from rets.http.client import RetsHttpClient __title__ = 'rets' -__version__ = '0.2.1' +__version__ = '0.3.0' __author__ = 'Martin Liu ' __license__ = 'MIT License' diff --git a/rets/http/client.py b/rets/http/client.py index 31ef998..c4d8a89 100644 --- a/rets/http/client.py +++ b/rets/http/client.py @@ -24,7 +24,7 @@ def __init__(self, username: str = None, password: str = None, auth_type: str = 'digest', - user_agent: str = 'rets-python/0.2', + user_agent: str = 'rets-python/0.3', user_agent_password: str = None, rets_version: str = '1.7.2', ):