Skip to content

Commit 0b64a0a

Browse files
authored
Merge pull request #403 from kubernetes-client/release
Release 3.0.0
2 parents a25f685 + 154ccc6 commit 0b64a0a

File tree

6 files changed

+19
-29
lines changed

6 files changed

+19
-29
lines changed

README.md

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,15 @@ 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</version>
30-
<!-- or, for the latest beta version
31-
<version>3.0.0-beta2</version>
32-
-->
29+
<version>3.0.0</version>
3330
<scope>compile</scope>
3431
</dependency>
3532
```
3633

3734
### Gradle users
3835

3936
```groovy
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-
37+
compile 'io.kubernetes:client-java:3.0.0'
4438
```
4539

4640
### Others
@@ -56,7 +50,7 @@ mvn package
5650

5751
Then manually install the following JARs:
5852

59-
* target/client-java-api-3.0.0-beta3-SNAPSHOT.jar
53+
* target/client-java-api-4.0.0-beta1-SNAPSHOT.jar
6054
* target/lib/*.jar
6155

6256
## Example
@@ -133,13 +127,11 @@ All APIs and Models' documentation can be found at the [Generated client's READM
133127

134128
## Compatibility
135129

136-
| client version | 1.4 | 1.5 | 1.6 | 1.7 | 1.8 | 1.9 | 1.10 | 1.11 |
137-
|------------------|------------------|------------------|------------------|------------------|------------------|-------------|------------|------------|
138-
| 0.1.0 | + | + || - | - | - | - | - |
139-
| 0.2.0 | + | + || - | - | - | - | - |
140-
| 1.0.0 | + | + | + | + || - | - | - |
141-
| 2.0.0 | + | + | + | + | + | + || - |
142-
| 3.0.0-beta2 | + | + | + | + | + | + | + ||
130+
| client version | 1.8 | 1.9 | 1.10 | 1.11 |
131+
|------------------|------------------|-------------|------------|------------|
132+
| 1.0.0 || - | - | - |
133+
| 2.0.0 | + | - || - |
134+
| 3.0.0 | + | + | + ||
143135

144136
Key:
145137

examples/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<groupId>io.kubernetes</groupId>
54
<artifactId>client-java-examples</artifactId>
6-
<version>3.0.0-beta3-SNAPSHOT</version>
5+
<version>4.0.0-beta1-SNAPSHOT</version>
76
<packaging>bundle</packaging>
87
<name>client-java-examples</name>
98
<url>https://github.com/kubernetes-client/java</url>
109
<parent>
1110
<groupId>io.kubernetes</groupId>
1211
<artifactId>client-java-parent</artifactId>
13-
<version>3.0.0-beta3-SNAPSHOT</version>
12+
<version>4.0.0-beta1-SNAPSHOT</version>
1413
</parent>
1514
<dependencies>
1615
<dependency>

kubernetes/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>client-java-api</artifactId>
55
<packaging>bundle</packaging>
66
<name>client-java-api</name>
7-
<version>3.0.0-beta3-SNAPSHOT</version>
7+
<version>4.0.0-beta1-SNAPSHOT</version>
88
<url>https://github.com/kubernetes-client/java</url>
99
<description>Swagger Java</description>
1010
<prerequisites>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>io.kubernetes</groupId>
1616
<artifactId>client-java-parent</artifactId>
17-
<version>3.0.0-beta3-SNAPSHOT</version>
17+
<version>4.0.0-beta1-SNAPSHOT</version>
1818
</parent>
1919

2020
<build>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<artifactId>client-java-parent</artifactId>
44
<groupId>io.kubernetes</groupId>
5-
<version>3.0.0-beta3-SNAPSHOT</version>
5+
<version>4.0.0-beta1-SNAPSHOT</version>
66
<packaging>pom</packaging>
77
<name>Kubernetes Client API</name>
88
<url>https://github.com/kubernetes-client/java</url>

proto/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.kubernetes</groupId>
44
<artifactId>client-java-proto</artifactId>
5-
<version>3.0.0-beta3-SNAPSHOT</version>
5+
<version>4.0.0-beta1-SNAPSHOT</version>
66
<packaging>bundle</packaging>
77
<name>client-java-proto</name>
88
<url>https://github.com/kubernetes-client/java</url>
99

1010
<parent>
1111
<groupId>io.kubernetes</groupId>
1212
<artifactId>client-java-parent</artifactId>
13-
<version>3.0.0-beta3-SNAPSHOT</version>
13+
<version>4.0.0-beta1-SNAPSHOT</version>
1414
</parent>
1515

1616
<dependencies>

util/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<groupId>io.kubernetes</groupId>
54
<artifactId>client-java</artifactId>
6-
<version>3.0.0-beta3-SNAPSHOT</version>
5+
<version>4.0.0-beta1-SNAPSHOT</version>
76
<packaging>bundle</packaging>
87
<name>client-java</name>
98
<url>https://github.com/kubernetes-client/java</url>
109
<parent>
1110
<groupId>io.kubernetes</groupId>
1211
<artifactId>client-java-parent</artifactId>
13-
<version>3.0.0-beta3-SNAPSHOT</version>
12+
<version>4.0.0-beta1-SNAPSHOT</version>
1413
</parent>
1514
<dependencies>
1615
<dependency>

0 commit comments

Comments
 (0)