Skip to content

Commit

Permalink
Update to model v0.2.2 and bump to v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iabudiab committed Dec 28, 2020
1 parent 30cd9d7 commit 973e872
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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: "<your-target>", dependencies: [
Expand Down

0 comments on commit 973e872

Please sign in to comment.