Skip to content

Commit 883df81

Browse files
committed
Update README
1 parent 571fd36 commit 883df81

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<a href="https://swiftpackageindex.com/swiftkube/model">
1010
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswiftkube%2Fmodel%2Fbadge%3Ftype%3Dplatforms"/>
1111
</a>
12-
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/">
13-
<img src="https://img.shields.io/badge/Kubernetes-1.32.2-blue.svg" alt="Kubernetes 1.32.2"/>
12+
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.33/">
13+
<img src="https://img.shields.io/badge/Kubernetes-1.32.3-blue.svg" alt="Kubernetes 1.33.3"/>
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" />
@@ -46,17 +46,17 @@
4646

4747
## Compatibility Matrix
4848

49-
| | 1.25.9 | 1.26.4 | 1.28.0 | 1.28.3 | 1.29.6 | 1.32.0 | 1.32.2 |
49+
| | 1.26.4 | 1.28.0 | 1.28.3 | 1.29.6 | 1.32.0 | 1.32.2 | 1.33.3 |
5050
|----------|--------|--------|--------|--------|--------|--------|--------|
51-
| `0.9.x` || - | - | - | - | - | - |
52-
| `0.10.x` | - | | - | - | - | - | - |
53-
| `0.11.x` | - || - | - | - | - | - |
54-
| `0.12.x` | - | - || - | - | - | - |
55-
| `0.13.x` | - | - | - || | - | - |
56-
| `0.14.x` | - | - | - | - || - | - |
57-
| `0.15.x` | - | - | - | - | - | | - |
58-
| `0.16.x` | - | - | - | - | - || - |
59-
| `0.17.x` | - | - | - | - | - | - ||
51+
| `0.10.x` || - | - | - | - | - | - |
52+
| `0.11.x` | | - | - | - | - | - | - |
53+
| `0.12.x` | - || - | - | - | - | - |
54+
| `0.13.x` | - | - || | - | - | - |
55+
| `0.14.x` | - | - | - || - | - | - |
56+
| `0.15.x` | - | - | - | - || - | - |
57+
| `0.16.x` | - | - | - | - | | - | - |
58+
| `0.17.x` | - | - | - | - | - || - |
59+
| `0.18.x` | - | - | - | - | - | - ||
6060

6161
- `` Exact match of API objects in both model and the Kubernetes version.
6262
- `-` API objects mismatches either due to the removal of old API or the addition of new API. However, everything the
@@ -450,7 +450,7 @@ print(spec?["cronSpec"])
450450
To use the `SwiftkubeModel` in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:
451451

452452
```swift
453-
.package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", from: "0.17.0")
453+
.package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", from: "0.18.0")
454454
```
455455

456456
then include it as a dependency in your target:
@@ -461,7 +461,7 @@ import PackageDescription
461461
let package = Package(
462462
// ...
463463
dependencies: [
464-
.package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", from: "0.17.0")
464+
.package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", from: "0.18.0")
465465
],
466466
targets: [
467467
.target(name: "<your-target>", dependencies: [

0 commit comments

Comments
 (0)