You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -66,24 +66,23 @@ Change our registry setup to use 3 layers:
66
66
However, tracing requires us to have a configurable location of **where to send spans**, the provders needs to be globally registered, and you likely want to set some resource attributes, so creating the actual `tracer` requires a bit more work:
Copy file name to clipboardExpand all lines: docs/stability.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ New variants **should** have a new name, and the old variant **should** remain w
47
47
48
48
!!! note "Deprecation Duration"
49
49
50
-
Deprecated functionality **must** stick around for at least **3 releases**.
50
+
Deprecated functionality **must** stick around for at least **3 feature releases**.
51
51
52
52
For instance, we deprecated [`runtime::utils::try_flatten_applied`](https://github.com/kube-rs/kube/blob/d0bf02f9c0783a3087b83633f2fa899d8539e91d/kube-runtime/src/utils/mod.rs#L29-L40) in `0.72.0`:
53
53
@@ -76,7 +76,7 @@ When adding new, experimental functionality, we export them through optional fea
76
76
These features are **opt-in** using [cargo features](https://doc.rust-lang.org/cargo/reference/features.html), and can be enabled from your `Cargo.toml`:
77
77
78
78
```toml
79
-
kube = { version = "0.80.0", features = ["runtime", "unstable-runtime"] }
79
+
kube = { version = "1", features = ["runtime", "unstable-runtime"] }
80
80
```
81
81
82
82
Functionality released under unstable features **can change between any version** and are **not subject** to **any** of the usual **guarantees**.
0 commit comments