Skip to content

Commit 4de8f7e

Browse files
committed
chore: cleanup readme versions
1 parent 2a1defd commit 4de8f7e

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

.readme-partials.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ custom_content: |
1212
<dependency>
1313
<groupId>com.google.cloud</groupId>
1414
<artifactId>libraries-bom</artifactId>
15-
<version>26.37.0</version>
15+
<version>26.44.0</version>
1616
<type>pom</type>
1717
<scope>import</scope>
1818
</dependency>
@@ -21,30 +21,30 @@ custom_content: |
2121
2222
<dependencies>
2323
<dependency>
24-
<groupId>com.google.cloud</groupId>
25-
<artifactId>google-cloud-storage-control</artifactId>
26-
</dependency>
24+
<groupId>com.google.cloud</groupId>
25+
<artifactId>google-cloud-storage-control</artifactId>
26+
</dependency>
27+
</dependencies>
2728
```
2829
2930
If you are using Maven without the BOM, add this to your dependencies:
30-
<!-- {x-version-update-start:google-cloud-storage:released} -->
3131
```xml
3232
<dependency>
3333
<groupId>com.google.cloud</groupId>
3434
<artifactId>google-cloud-storage-control</artifactId>
35-
<version>2.41.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-storage-control:current} -->
35+
<version>2.41.0</version>
3636
</dependency>
3737
```
3838
3939
If you are using Gradle 5.x or later, add this to your dependencies:
4040
```Groovy
41-
implementation platform('com.google.cloud:libraries-bom:2.41.0')
41+
implementation platform('com.google.cloud:libraries-bom:26.44.0')
4242
implementation 'com.google.cloud:google-cloud-storage-control'
4343
```
4444
If you are using Gradle without BOM, add this to your dependencies:
4545
4646
```Groovy
47-
implementation 'com.google.cloud:google-cloud-storage-control:2.41.1-SNAPSHOT' <!-- {x-version-update:google-cloud-storage-control:current} -->
47+
implementation 'com.google.cloud:google-cloud-storage-control:2.41.0'
4848
```
4949
5050
#### Creating an authorized service object

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.43.0</version>
22+
<version>26.44.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -35,7 +35,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
3535
<groupId>com.google.cloud</groupId>
3636
<artifactId>google-cloud-storage-control</artifactId>
3737
</dependency>
38-
38+
</dependencies>
3939
```
4040

4141
If you are using Maven without the BOM, add this to your dependencies:
@@ -51,28 +51,31 @@ If you are using Maven without the BOM, add this to your dependencies:
5151
<dependency>
5252
<groupId>com.google.cloud</groupId>
5353
<artifactId>google-cloud-storage-control</artifactId>
54-
<version>2.41.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-storage:current} -->
54+
<version>2.41.0</version>
5555
</dependency>
5656

5757
```
5858

5959
If you are using Gradle 5.x or later, add this to your dependencies:
6060

6161
```Groovy
62-
implementation platform('com.google.cloud:libraries-bom:2.41.0')
62+
implementation platform('com.google.cloud:libraries-bom:26.44.0')
6363
6464
implementation 'com.google.cloud:google-cloud-storage'
65+
implementation 'com.google.cloud:google-cloud-storage-control'
6566
```
6667
If you are using Gradle without BOM, add this to your dependencies:
6768

6869
```Groovy
6970
implementation 'com.google.cloud:google-cloud-storage:2.41.0'
71+
implementation 'com.google.cloud:google-cloud-storage-control:2.41.0'
7072
```
7173

7274
If you are using SBT, add this to your dependencies:
7375

7476
```Scala
7577
libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "2.41.0"
78+
libraryDependencies += "com.google.cloud" % "google-cloud-storage-control" % "2.41.0"
7679
```
7780
<!-- {x-version-update-end} -->
7881

@@ -121,7 +124,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
121124
<dependency>
122125
<groupId>com.google.cloud</groupId>
123126
<artifactId>libraries-bom</artifactId>
124-
<version>26.37.0</version>
127+
<version>26.44.0</version>
125128
<type>pom</type>
126129
<scope>import</scope>
127130
</dependency>
@@ -130,9 +133,10 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
130133

131134
<dependencies>
132135
<dependency>
133-
<groupId>com.google.cloud</groupId>
134-
<artifactId>google-cloud-storage-control</artifactId>
135-
</dependency>
136+
<groupId>com.google.cloud</groupId>
137+
<artifactId>google-cloud-storage-control</artifactId>
138+
</dependency>
139+
</dependencies>
136140
```
137141

138142
If you are using Maven without the BOM, add this to your dependencies:
@@ -141,19 +145,19 @@ If you are using Maven without the BOM, add this to your dependencies:
141145
<dependency>
142146
<groupId>com.google.cloud</groupId>
143147
<artifactId>google-cloud-storage-control</artifactId>
144-
<version>2.41.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-storage-control:current} -->
148+
<version>2.41.0</version>
145149
</dependency>
146150
```
147151

148152
If you are using Gradle 5.x or later, add this to your dependencies:
149153
```Groovy
150-
implementation platform('com.google.cloud:libraries-bom:2.41.0')
154+
implementation platform('com.google.cloud:libraries-bom:26.44.0')
151155
implementation 'com.google.cloud:google-cloud-storage-control'
152156
```
153157
If you are using Gradle without BOM, add this to your dependencies:
154158

155159
```Groovy
156-
implementation 'com.google.cloud:google-cloud-storage-control:2.41.1-SNAPSHOT' <!-- {x-version-update:google-cloud-storage-control:current} -->
160+
implementation 'com.google.cloud:google-cloud-storage-control:2.41.0'
157161
```
158162

159163
#### Creating an authorized service object

0 commit comments

Comments
 (0)