Skip to content

Commit 73bec95

Browse files
committed
Update README
1 parent 43f528b commit 73bec95

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<a href="https://swiftpackageindex.com/swiftkube/client">
1010
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswiftkube%2Fclient%2Fbadge%3Ftype%3Dplatforms"/>
1111
</a>
12-
<a href="https://v1-24.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/">
13-
<img src="https://img.shields.io/badge/Kubernetes-1.24.10-blue.svg" alt="Kubernetes 1.24.10"/>
12+
<a href="https://v1-26.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.26/">
13+
<img src="https://img.shields.io/badge/Kubernetes-1.26.4-blue.svg" alt="Kubernetes 1.26.4"/>
1414
</a>
1515
<a href="https://swift.org/package-manager">
1616
<img src="https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg?style=flat" alt="Swift Package Manager" />
@@ -68,13 +68,15 @@ on [SwiftNIO](https://github.com/apple/swift-nio) and the [AysncHTTPClient](http
6868

6969
## Compatibility Matrix
7070

71-
| | 1.18.9 | 1.19.8 | 1.20.9 | 1.22.7 | 1.24.8 |
72-
|-------------------|--------|--------|--------|--------|--------|
73-
| `0.6.x` || - | - | - | - |
74-
| `0.7.x...0.9.x` | - || - | - | - |
75-
| `0.10.x` | - | - || - | - |
76-
| `0.11.x` | - | - | - || - |
77-
| `0.12.x...0.13.x` | - | - | - | - ||
71+
| | 1.18.9 | 1.19.8 | 1.20.9 | 1.22.7 | 1.24.8 | 1.24.10 | 1.26.4 |
72+
|-------------------|--------|--------|--------|--------|--------|---------|--------|
73+
| `0.6.x` || - | - | - | - | - | - |
74+
| `0.7.x...0.9.x` | - || - | - | - | - | - |
75+
| `0.10.x` | - | - || - | - | - | - |
76+
| `0.11.x` | - | - | - || - | - | - |
77+
| `0.12.x...0.13.x` | - | - | - | - || - | - |
78+
| `0.14.x` | - | - | - | - | - || - |
79+
| `0.15.x` | - | - | - | - | - | - ||
7880

7981
- `` Exact match of API objects in both client and the Kubernetes version.
8082
- `-` API objects mismatches either due to the removal of old API or the addition of new API. However, everything the
@@ -543,7 +545,7 @@ app.get("metrics") { request -> EventLoopFuture<String> in
543545
To use the `SwiftkubeClient` in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:
544546

545547
```swift
546-
.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.12.0")
548+
.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.15.0")
547549
```
548550

549551
then include it as a dependency in your target:
@@ -554,7 +556,7 @@ import PackageDescription
554556
let package = Package(
555557
// ...
556558
dependencies: [
557-
.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.12.0")
559+
.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.15.0")
558560
],
559561
targets: [
560562
.target(name: "<your-target>", dependencies: [

0 commit comments

Comments
 (0)