This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(*): Bump the krator and derive versions (#45)
This is in preparation for the 0.4 release of Krator. This is needed because supporting k8s 1.21 required a version bump of the k8s_openapi crate, which contained breaking changes. Because of those breaking changes, it is a breaking change as well for krator. This still supports any version of k8s that k8s_openapi does Signed-off-by: Taylor Thomas <[email protected]>
- Loading branch information
1 parent
092d6ed
commit 61b34e0
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "krator-derive" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"Kevin Flansburg <[email protected]>", | ||
"Taylor Thomas <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "krator" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"Kevin Flansburg <[email protected]>", | ||
"Taylor Thomas <[email protected]>", | ||
|
@@ -41,7 +41,7 @@ serde = { version = "1.0", features = ["derive"] } | |
serde_json = "1.0" | ||
serde_yaml = { version = "0.8", optional = true } | ||
futures = { version = "0.3", default-features = false } | ||
krator-derive = { version = "0.2", path = "../krator-derive", optional = true } | ||
krator-derive = { version = "0.3", path = "../krator-derive", optional = true } | ||
warp = { version = "0.3", optional = true, features = ["tls"] } | ||
json-patch = { version = "0.2", optional = true } | ||
tracing = { version = "0.1", features = ['log'] } | ||
|