From 973e87209b5128320e47a1c66509e836fb62692a Mon Sep 17 00:00:00 2001 From: Iskandar Abudiab Date: Mon, 28 Dec 2020 15:55:22 +0100 Subject: [PATCH] Update to model v0.2.2 and bump to v0.3.2 --- CHANGELOG.md | 5 +++++ Package.swift | 2 +- README.md | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a968ba1..5a1033e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.3.2 + +- Change personal copyright to Swiftkube Project +- Make `KubernetesClientConfig` initializer public #3 + ## 0.3.1 - Update to Kubernetes model v1.18.13 diff --git a/Package.swift b/Package.swift index 1cf9010..92db8d3 100644 --- a/Package.swift +++ b/Package.swift @@ -14,7 +14,7 @@ let package = Package( targets: ["SwiftkubeClient"]), ], dependencies: [ - .package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", .upToNextMajor(from: "0.2.0")), + .package(name: "SwiftkubeModel", url: "https://github.com/swiftkube/model.git", .upToNextMajor(from: "0.2.2")), .package(name: "async-http-client", url: "https://github.com/swift-server/async-http-client.git", .upToNextMajor(from: "1.0.0")), .package(name: "swift-log", url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.0.0")), .package(name: "Yams", url: "https://github.com/jpsim/Yams.git", .upToNextMajor(from: "4.0.0")) diff --git a/README.md b/README.md index f8401a8..09f4c70 100644 --- a/README.md +++ b/README.md @@ -297,7 +297,7 @@ let gvk = GroupVersionKind(for: "deploy") To use the `SwiftkubeModel` in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file: ```swift -.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.3.0"), +.package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.3.2"), ``` then include it as a dependency in your target: @@ -308,7 +308,7 @@ import PackageDescription let package = Package( // ... dependencies: [ - .package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.3.0") + .package(name: "SwiftkubeClient", url: "https://github.com/swiftkube/client.git", from: "0.3.2") ], targets: [ .target(name: "", dependencies: [