Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Updating version to 2.0.9 and adding release notes.
Browse files Browse the repository at this point in the history
git-svn-id: http://gdata-python-client.googlecode.com/svn/trunk@964 7ed92db3-4423-0410-a5bc-5f2579731264
  • Loading branch information
j.s@google.com committed Mar 5, 2010
1 parent 4b8b0bb commit 1087a14
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
=== 2.0.9 ===
March 5, 2010 (revision 964)

- Fixed URL related bug in gdata.calendar.service. You can now edit and delete
against https URLs.
- Removed hard coded Python version from gdata.contacts. Resolves issue 347.

=== 2.0.8 ===
February 26, 2010 (revision 960)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(
name='gdata',
version='2.0.8',
version='2.0.9',
description='Python client library for Google data APIs',
long_description = """\
The Google data Python client library makes it easy to interact with
Expand Down
4 changes: 2 additions & 2 deletions src/atom/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ def modify_request(self, http_request):

# Set the user agent header for logging purposes.
if self.source:
http_request.headers['User-Agent'] = '%s gdata-py/2.0.8' % self.source
http_request.headers['User-Agent'] = '%s gdata-py/2.0.9' % self.source
else:
http_request.headers['User-Agent'] = 'gdata-py/2.0.8'
http_request.headers['User-Agent'] = 'gdata-py/2.0.9'

return http_request

Expand Down
2 changes: 1 addition & 1 deletion src/atom/http_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import StringIO


USER_AGENT = '%s GData-Python/2.0.2'
USER_AGENT = '%s GData-Python/2.0.9'


class Error(Exception):
Expand Down

0 comments on commit 1087a14

Please sign in to comment.