Skip to content

Commit 579f5a5

Browse files
dadadomDominik Sandjaja
authored andcommitted
Update the versions used in the README to latest stable and beta
The versions in the README.md which is shown as the top-level document when looking at the repository, were outdated. Users might use those outdated versions and run into problems which have been fixed in the meantime.
1 parent f1819ee commit 579f5a5

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,21 @@ Add this dependency to your project's POM:
2626
<dependency>
2727
<groupId>io.kubernetes</groupId>
2828
<artifactId>client-java</artifactId>
29-
<version>2.0.0-beta1</version>
29+
<version>2.0.0</version>
30+
<!-- or, for the latest beta version
31+
<version>3.0.0-beta2</version>
32+
-->
3033
<scope>compile</scope>
3134
</dependency>
3235
```
3336

3437
### Gradle users
3538

3639
```groovy
37-
compile 'io.kubernetes:client-java:2.0.0-beta1'
40+
compile 'io.kubernetes:client-java:2.0.0'
41+
// or, for the latest beta version
42+
// compile 'io.kubernetes:client-java:3.0.0-beta2'
43+
3844
```
3945

4046
### Others
@@ -44,12 +50,13 @@ At first generate the JAR by executing:
4450
```
4551
git clone --recursive https://github.com/kubernetes-client/java
4652
cd java
53+
cd kubernetes
4754
mvn package
4855
```
4956

5057
Then manually install the following JARs:
5158

52-
* target/client-java-2.0.0-beta1-SNAPSHOT.jar
59+
* target/client-java-api-3.0.0-beta3-SNAPSHOT.jar
5360
* target/lib/*.jar
5461

5562
## Example
@@ -132,7 +139,7 @@ All APIs and Models' documentation can be found at the [Generated client's READM
132139
| 0.2.0 | + | + || - | - | - | - | - |
133140
| 1.0.0 | + | + | + | + || - | - | - |
134141
| 2.0.0 | + | + | + | + | + | + || - |
135-
| 3.0.0-beta1 | + | + | + | + | + | + | + ||
142+
| 3.0.0-beta2 | + | + | + | + | + | + | + ||
136143

137144
Key:
138145

0 commit comments

Comments
 (0)