Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinxsliu committed Jan 28, 2017
1 parent f14bb15 commit 79acea7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion rets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from rets.http.client import RetsHttpClient

__title__ = 'rets'
__version__ = '0.2.1'
__version__ = '0.3.0'
__author__ = 'Martin Liu <[email protected]>'
__license__ = 'MIT License'

Expand Down
2 changes: 1 addition & 1 deletion rets/http/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
):
Expand Down

0 comments on commit 79acea7

Please sign in to comment.