Skip to content

Commit

Permalink
release-0.7.0 ????? ? default
Browse files Browse the repository at this point in the history
  • Loading branch information
jaropolk2 committed Jan 23, 2017
2 parents b26f935 + 7b05cf0 commit db7ca89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions rtmapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit db7ca89

Please sign in to comment.