Skip to content

Prep for 1.0.0-beta1 release #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 1.0.0-beta1

This is the first beta release of this client.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it worth mentioning that the client is now supports kubernetes 1.8 clusters. otherwise looks good.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh good call


## Features

* Support for Kubernetes 1.8
([#84](https://github.com/kubernetes-client/java/pull/84)).

## Fixes

* Allow kubeconfig to be loaded without current-context
([#81](https://github.com/kubernetes-client/java/pull/81)).

# 0.2.0

## Fixes
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,11 @@ All APIs and Models' documentation can be found at the [Generated client's READM

## Compatability

| | Kubernetes 1.4 | Kubernetes 1.5 | Kubernetes 1.6 | Kubernetes 1.7 |
|-------------------|----------------|----------------|----------------|----------------|
| java-client 0.1.0 | + | + | ✓ | - |
| java-client 0.2.0 | + | + | ✓ | - |
| | Kubernetes 1.4 | Kubernetes 1.5 | Kubernetes 1.6 | Kubernetes 1.7 | Kubernetes 1.8 |
|-------------------------|----------------|----------------|----------------|----------------|----------------|
| java-client 0.1.0 | + | + | ✓ | - | - |
| java-client 0.2.0 | + | + | ✓ | - | - |
| java-client 1.0.0-beta1 | + | + | + | + | ✓ |

Key:

Expand Down
12 changes: 6 additions & 6 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-examples</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>client-java-examples</name>
<url>https://github.com/kubernetes-client/java</url>
<parent>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-api</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-proto</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -86,4 +86,4 @@
<junit-version>4.12</junit-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
</project>
4 changes: 2 additions & 2 deletions kubernetes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>client-java-api</artifactId>
<packaging>jar</packaging>
<name>client-java-api</name>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
<url>https://github.com/kubernetes-client/java</url>
<description>Swagger Java</description>
<prerequisites>
Expand All @@ -14,7 +14,7 @@
<parent>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>client-java-parent</artifactId>
<groupId>io.kubernetes</groupId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Kubernetes Client API</name>
<url>https://github.com/kubernetes-client/java</url>
Expand Down
4 changes: 2 additions & 2 deletions proto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-proto</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>client-java-proto</name>
<url>https://github.com/kubernetes-client/java</url>

<parent>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-java</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>client-java</name>
<url>https://github.com/kubernetes-client/java</url>
<parent>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-api</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-proto</artifactId>
<version>0.3-SNAPSHOT</version>
<version>1.0.0-beta1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
Expand Down