Skip to content

Commit 49b7464

Browse files
author
Benjamin E. Coe
authored
chore: release 0.17.0 (#7)
1 parent fcd1c89 commit 49b7464

8 files changed

Lines changed: 27 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## [0.17.0](https://www.github.com/bcoe/google-auth-library-java/compare/v0.16.2...v0.17.0) (2019-07-26)
4+
5+
6+
### Bug Fixes
7+
8+
* Fix declared dependencies from merge issue ([#291](https://www.github.com/bcoe/google-auth-library-java/issues/291)) ([35abf13](https://www.github.com/bcoe/google-auth-library-java/commit/35abf13))
9+
10+
11+
### Features
12+
13+
* Implement ServiceAccountSigner for ImpersonatedCredentials ([#279](https://www.github.com/bcoe/google-auth-library-java/issues/279)) ([70767e3](https://www.github.com/bcoe/google-auth-library-java/commit/70767e3))

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you are using Maven, add this to your pom.xml file (notice that you can repla
3333
<dependency>
3434
<groupId>com.google.auth</groupId>
3535
<artifactId>google-auth-library-oauth2-http</artifactId>
36-
<version>0.16.2</version>
36+
<version>0.17.0</version>
3737
</dependency>
3838
```
3939
[//]: # ({x-version-update-end})
@@ -43,15 +43,15 @@ If you are using Gradle, add this to your dependencies
4343

4444
[//]: # ({x-version-update-start:google-auth-library-oauth2-http:released})
4545
```Groovy
46-
compile 'com.google.auth:google-auth-library-oauth2-http:0.16.2'
46+
compile 'com.google.auth:google-auth-library-oauth2-http:0.17.0'
4747
```
4848
[//]: # ({x-version-update-end})
4949

5050
If you are using SBT, add this to your dependencies
5151

5252
[//]: # ({x-version-update-start:google-auth-library-oauth2-http:released})
5353
```Scala
54-
libraryDependencies += "com.google.auth" % "google-auth-library-oauth2-http" % "0.16.2"
54+
libraryDependencies += "com.google.auth" % "google-auth-library-oauth2-http" % "0.17.0"
5555
```
5656
[//]: # ({x-version-update-end})
5757

appengine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.auth</groupId>
77
<artifactId>google-auth-library-parent</artifactId>
8-
<version>0.16.3-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} -->
8+
<version>0.17.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.auth</groupId>
55
<artifactId>google-auth-library-bom</artifactId>
6-
<version>0.16.3-SNAPSHOT</version><!-- {x-version-update:google-auth-library-bom:current} -->
6+
<version>0.17.0</version><!-- {x-version-update:google-auth-library-bom:current} -->
77
<packaging>pom</packaging>
88
<name>Google Auth Library for Java BOM</name>
99
<description>

credentials/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.auth</groupId>
77
<artifactId>google-auth-library-parent</artifactId>
8-
<version>0.16.3-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} -->
8+
<version>0.17.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

oauth2_http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.auth</groupId>
77
<artifactId>google-auth-library-parent</artifactId>
8-
<version>0.16.3-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} -->
8+
<version>0.17.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

pom.xml

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

1111
<groupId>com.google.auth</groupId>
1212
<artifactId>google-auth-library-parent</artifactId>
13-
<version>0.16.3-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} -->
13+
<version>0.17.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
1414
<packaging>pom</packaging>
1515
<name>Google Auth Library for Java</name>
1616
<description>Client libraries providing authentication and

versions.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Format:
22
# module:released-version:current-version
33

4-
google-auth-library:0.16.2:0.16.3-SNAPSHOT
5-
google-auth-library-bom:0.16.2:0.16.3-SNAPSHOT
6-
google-auth-library-parent:0.16.2:0.16.3-SNAPSHOT
7-
google-auth-library-appengine:0.16.2:0.16.3-SNAPSHOT
8-
google-auth-library-credentials:0.16.2:0.16.3-SNAPSHOT
9-
google-auth-library-oauth2-http:0.16.2:0.16.3-SNAPSHOT
4+
google-auth-library:0.17.0:0.17.0
5+
google-auth-library-bom:0.17.0:0.17.0
6+
google-auth-library-parent:0.17.0:0.17.0
7+
google-auth-library-appengine:0.17.0:0.17.0
8+
google-auth-library-credentials:0.17.0:0.17.0
9+
google-auth-library-oauth2-http:0.17.0:0.17.0

0 commit comments

Comments
 (0)