diff --git a/CHANGELOG b/CHANGELOG index eb9ddde..cc972b9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ The changelog lists new feature only. Bugfixes and bugfix releases are omitted (see the repository for those information). +RtmAPI 0.7 + * support for API ver 2.0 + RtmAPI 0.6 * support for nested lists (deleted lists of getList) diff --git a/rtmapi/__init__.py b/rtmapi/__init__.py index c529509..9948a9e 100644 --- a/rtmapi/__init__.py +++ b/rtmapi/__init__.py @@ -17,8 +17,8 @@ def __str__(self): class Rtm(object): - _auth_url = "http://api.rememberthemilk.com/services/auth/" - _base_url = "http://api.rememberthemilk.com/services/rest/" + _auth_url = "https://api.rememberthemilk.com/services/auth/" + _base_url = "https://api.rememberthemilk.com/services/rest/" def __init__(self, api_key, shared_secret, perms="read", token=None, api_version=None): """ diff --git a/setup.py b/setup.py index b763f7b..582cd8a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description=open('README').read(), license='License :: OSI Approved :: MIT License', url='https://bitbucket.org/michaelgruenewald/rtmapi', - version='0.6.0', + version='0.7.0', packages=['rtmapi',], requires=['httplib2 (>=0.6.0)'], classifiers=[