Skip to content

Commit 4876116

Browse files
authored
Bump up the SDK version (#23)
2 parents 9a0ba23 + 422018b commit 4876116

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "ankaios_sdk"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = ["Elektrobit Automotive GmbH and Ankaios contributors"]
77
description = "Eclipse Ankaios Rust SDK - provides a convenient Rust interface for interacting with the Ankaios platform."
8-
documentation = "https://docs.rs/ankaios-sdk/0.5.0"
8+
documentation = "https://docs.rs/ankaios-sdk/0.6.0"
99
repository = "https://github.com/eclipse-ankaios/ank-sdk-rust"
1010
readme = "README.md"
1111
keywords = ["ankaios", "automotive", "sdk", "container", "orchestration"]

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![Github](https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github)](https://github.com/eclipse-ankaios/ank-sdk-rust)
1010
[![Crates.io](https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust)](https://crates.io/crates/ankaios-sdk)
11-
[![Docs.rs](https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs)](https://docs.rs/ankaios-sdk/0.5.0)
11+
[![Docs.rs](https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs)](https://docs.rs/ankaios-sdk/0.6.0)
1212

1313
[Eclipse Ankaios](https://github.com/eclipse-ankaios/ankaios) provides workload and
1414
container orchestration for automotive High Performance Computing Platforms (HPCs).
@@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
2828

2929
```toml
3030
[dependencies]
31-
ankaios_sdk = "0.5.0"
31+
ankaios_sdk = "0.6.0"
3232
```
3333

3434
### Clone and link as vendor
@@ -56,6 +56,7 @@ are using. For information regarding versioning, please refer to this table:
5656
| -------- | ------- |
5757
| 0.4.x and below | No Rust SDK available. Please update Ankaios. |
5858
| 0.5.x | 0.5.x |
59+
| 0.6.x | 0.6.x |
5960

6061
## Usage
6162

@@ -136,7 +137,7 @@ async fn main() {
136137
For more details, please visit:
137138

138139
* [Ankaios documentation](https://eclipse-ankaios.github.io/ankaios/latest/)
139-
* [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.5.0)
140+
* [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.6.0)
140141

141142
## Contributing
142143

src/lib.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
clippy::unwrap_used,
4848
)
4949
)]
50-
#![doc(html_root_url = "https://docs.rs/ankaios_sdk/0.5.0")]
50+
#![doc(html_root_url = "https://docs.rs/ankaios_sdk/0.6.0")]
5151
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/132572901?s=200&v=4")] // Icon above title in top-left
5252
#![doc(issue_tracker_base_url = "https://github.com/eclipse-ankaios/ank-sdk-rust/issues/")]
5353

@@ -61,7 +61,7 @@
6161
//!
6262
//! [![github]](https://github.com/eclipse-ankaios/ank-sdk-rust)
6363
//! [![crates-io]](https://crates.io/crates/ankaios-sdk)
64-
//! [![docs-rs]](https://docs.rs/ankaios-sdk/0.5.0)
64+
//! [![docs-rs]](https://docs.rs/ankaios-sdk/0.6.0)
6565
//!
6666
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
6767
//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
@@ -85,7 +85,7 @@
8585
//!
8686
//! ```toml
8787
//! [dependencies]
88-
//! ankaios_sdk = "0.5.0"
88+
//! ankaios_sdk = "0.6.0"
8989
//! ```
9090
//!
9191
//! ### Clone and link as vendor
@@ -113,6 +113,7 @@
113113
//! | -------- | ------- |
114114
//! | 0.4.x and below | No Rust SDK available. Please update Ankaios. |
115115
//! | 0.5.x | 0.5.x |
116+
//! | 0.6.x | 0.6.x |
116117
//!
117118
//! ## Usage
118119
//!
@@ -193,7 +194,7 @@
193194
//! For more details, please visit:
194195
//!
195196
//! * [Ankaios documentation](https://eclipse-ankaios.github.io/ankaios/latest/)
196-
//! * [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.5.0)
197+
//! * [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.6.0)
197198
//!
198199
//! ## Contributing
199200
//!

0 commit comments

Comments
 (0)