Skip to content

Commit 63e40c8

Browse files
committed
Bumped version string
1 parent 9cd8ead commit 63e40c8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name='gdata',
28-
version='2.0.15',
28+
version='2.0.16',
2929
description='Python client library for Google data APIs',
3030
long_description = """\
3131
The Google data Python client library makes it easy to interact with

src/atom/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ def modify_request(self, http_request):
178178

179179
# Set the user agent header for logging purposes.
180180
if self.source:
181-
http_request.headers['User-Agent'] = '%s gdata-py/2.0.15' % self.source
181+
http_request.headers['User-Agent'] = '%s gdata-py/2.0.16' % self.source
182182
else:
183-
http_request.headers['User-Agent'] = 'gdata-py/2.0.15'
183+
http_request.headers['User-Agent'] = 'gdata-py/2.0.16'
184184

185185
return http_request
186186

src/atom/http_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import StringIO
3737

3838

39-
USER_AGENT = '%s GData-Python/2.0.15'
39+
USER_AGENT = '%s GData-Python/2.0.16'
4040

4141

4242
class Error(Exception):

0 commit comments

Comments
 (0)