Skip to content

Commit e8b1e79

Browse files
committed
Release version v1.4.2.
1 parent 89bc496 commit e8b1e79

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.4.2
2+
Version 1.4.2
3+
4+
Several small bugfixes related to six/py3 support.
5+
16
v1.4.1
27
Version 1.4.1
38

docs/epy/oauth2client-module.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1 class="epydoc">Package oauth2client</h1><p class="nomargin-top"><span class=
6262

6363
<hr />
6464
<div class="fields"> <p><strong>Version:</strong>
65-
1.4.1
65+
1.4.2
6666
</p>
6767
</div><!-- ==================== SUBMODULES ==================== -->
6868
<a name="section-Submodules"></a>
@@ -212,7 +212,7 @@ <h3 class="epydoc">GOOGLE_DEVICE_URI</h3>
212212
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
213213
<tr>
214214
<td align="left" class="footer">
215-
Generated by Epydoc 3.0.1 on Thu Nov 13 14:04:19 2014
215+
Generated by Epydoc 3.0.1 on Mon Nov 24 08:55:55 2014
216216
</td>
217217
<td align="right" class="footer">
218218
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/epy/oauth2client-pysrc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1 class="epydoc">Source Code for <a href="oauth2client-module.html">Package oa
5757
<pre class="py-src">
5858
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-docstring">"""Client library for using OAuth2, especially with Google APIs."""</tt> </tt>
5959
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"> </tt>
60-
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-name">__version__</tt> <tt class="py-op">=</tt> <tt class="py-string">'1.4.1'</tt> </tt>
60+
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-name">__version__</tt> <tt class="py-op">=</tt> <tt class="py-string">'1.4.2'</tt> </tt>
6161
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"> </tt>
6262
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"><tt id="link-0" class="py-name" targets="Variable oauth2client.GOOGLE_AUTH_URI=oauth2client-module.html#GOOGLE_AUTH_URI"><a title="oauth2client.GOOGLE_AUTH_URI" class="py-name" href="#" onclick="return doclink('link-0', 'GOOGLE_AUTH_URI', 'link-0');">GOOGLE_AUTH_URI</a></tt> <tt class="py-op">=</tt> <tt class="py-string">'https://accounts.google.com/o/oauth2/auth'</tt> </tt>
6363
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"><tt id="link-1" class="py-name" targets="Variable oauth2client.GOOGLE_DEVICE_URI=oauth2client-module.html#GOOGLE_DEVICE_URI"><a title="oauth2client.GOOGLE_DEVICE_URI" class="py-name" href="#" onclick="return doclink('link-1', 'GOOGLE_DEVICE_URI', 'link-1');">GOOGLE_DEVICE_URI</a></tt> <tt class="py-op">=</tt> <tt class="py-string">'https://accounts.google.com/o/oauth2/device/code'</tt> </tt>
@@ -96,7 +96,7 @@ <h1 class="epydoc">Source Code for <a href="oauth2client-module.html">Package oa
9696
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
9797
<tr>
9898
<td align="left" class="footer">
99-
Generated by Epydoc 3.0.1 on Thu Nov 13 14:04:21 2014
99+
Generated by Epydoc 3.0.1 on Mon Nov 24 08:55:57 2014
100100
</td>
101101
<td align="right" class="footer">
102102
<a target="mainFrame" href="http://epydoc.sourceforge.net"

oauth2client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Client library for using OAuth2, especially with Google APIs."""
22

3-
__version__ = '1.4.1'
3+
__version__ = '1.4.2'
44

55
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
66
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'

0 commit comments

Comments
 (0)