Skip to content

Commit 8307a81

Browse files
release-please[bot]busunkim96
authored andcommitted
chore: release 2.0.1 (#845)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 4e0fb1c commit 8307a81

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
[1]: https://pypi.org/project/google-auth/#history
66

7+
### [2.0.1](https://www.github.com/googleapis/google-auth-library-python/compare/v2.0.0...v2.0.1) (2021-08-17)
8+
9+
10+
### Bug Fixes
11+
12+
* normalize AWS paths correctly on windows ([#842](https://www.github.com/googleapis/google-auth-library-python/issues/842)) ([4e0fb1c](https://www.github.com/googleapis/google-auth-library-python/commit/4e0fb1cee78ee56b878b6e12be3b3c58df242b05))
13+
714
## [2.0.0](https://www.github.com/googleapis/google-auth-library-python/compare/v2.0.0-b1...v2.0.0) (2021-08-16)
815

916

google/auth/crypt/es256.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def verify(self, message, signature):
5353
sig_bytes = _helpers.to_bytes(signature)
5454
if len(sig_bytes) != 64:
5555
return False
56-
r = utils.int_from_bytes(sig_bytes[:32], byteorder="big")
57-
s = utils.int_from_bytes(sig_bytes[32:], byteorder="big")
56+
r = int.from_bytes(sig_bytes[:32], byteorder="big")
57+
s = int.from_bytes(sig_bytes[32:], byteorder="big")
5858
asn1_sig = encode_dss_signature(r, s)
5959

6060
message = _helpers.to_bytes(message)

google/auth/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "2.0.0"
15+
__version__ = "2.0.1"

0 commit comments

Comments
 (0)