Skip to content

Commit b9e1b10

Browse files
authored
Merge pull request #38 from eclipse-ankaios/prepare_0.7.0_release
Prepare 0.7.0 release
2 parents de3e34a + b34ded8 commit b9e1b10

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
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.7.0-pre"
3+
version = "0.7.0"
44
edition = "2024"
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.6.0"
8+
documentation = "https://docs.rs/ankaios-sdk/0.7.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
@@ -10,7 +10,7 @@
1010

1111
[![Github](https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github)](https://github.com/eclipse-ankaios/ank-sdk-rust)
1212
[![Crates.io](https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust)](https://crates.io/crates/ankaios-sdk)
13-
[![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)
13+
[![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.7.0)
1414

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

3131
```toml
3232
[dependencies]
33-
ankaios_sdk = "0.6.0"
33+
ankaios_sdk = "0.7.0"
3434
```
3535

3636
### Clone and link as vendor
@@ -59,6 +59,7 @@ are using. For information regarding versioning, please refer to this table:
5959
| 0.4.x and below | No Rust SDK available. Please update Ankaios. |
6060
| 0.5.x | 0.5.x |
6161
| 0.6.x | 0.6.x |
62+
| 0.7.x | 0.7.x |
6263

6364
## Usage
6465

@@ -138,7 +139,7 @@ async fn main() {
138139
For more details, please visit:
139140

140141
* [Ankaios documentation](https://eclipse-ankaios.github.io/ankaios/latest/)
141-
* [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.6.0)
142+
* [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.7.0)
142143

143144
## Contributing
144145

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ fn main() {
2020
.boxed("FromAnkaios.FromAnkaiosEnum.response")
2121
.type_attribute(".", "#[derive(serde::Deserialize, serde::Serialize)]")
2222
.type_attribute(".", "#[serde(rename_all = \"camelCase\")]")
23+
.type_attribute("WorkloadState", "#[allow(dead_code)]") // Workaround until the release of the ankaios api
2324
.type_attribute(
2425
"ank_base.ConfigItem",
2526
"#[serde(into = \"serde_yaml::Value\")]",

examples/apps/test_files.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ async fn main() {
145145
file.mount_point, binary_data
146146
);
147147
}
148-
_ => unreachable!("Unexpected file content type"),
149148
}
150149
}
151150
}

src/components/control_interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ANKAIOS_INPUT_FIFO_PATH: &str = "input";
4949
const ANKAIOS_OUTPUT_FIFO_PATH: &str = "output";
5050
/// Version of [Ankaios](https://eclipse-ankaios.github.io/ankaios) that is compatible
5151
/// with the [`ControlInterface`] implementation.
52-
const ANKAIOS_VERSION: &str = "0.7.0-pre";
52+
const ANKAIOS_VERSION: &str = "0.7.0";
5353
/// Maximum size of a varint in bytes.
5454
const MAX_VARINT_SIZE: usize = 19;
5555

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.6.0")]
50+
#![doc(html_root_url = "https://docs.rs/ankaios_sdk/0.7.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.6.0)
64+
//! [![docs-rs]](https://docs.rs/ankaios-sdk/0.7.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.6.0"
88+
//! ankaios_sdk = "0.7.0"
8989
//! ```
9090
//!
9191
//! ### Clone and link as vendor
@@ -114,6 +114,7 @@
114114
//! | 0.4.x and below | No Rust SDK available. Please update Ankaios. |
115115
//! | 0.5.x | 0.5.x |
116116
//! | 0.6.x | 0.6.x |
117+
//! | 0.7.x | 0.7.x |
117118
//!
118119
//! ## Usage
119120
//!
@@ -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.6.0)
197+
//! * [Rust SDK documentation](https://docs.rs/ankaios-sdk/0.7.0)
197198
//!
198199
//! ## Contributing
199200
//!

0 commit comments

Comments
 (0)