From acb9afc3fbf211803874480714e3a3f9f001efda Mon Sep 17 00:00:00 2001 From: youyuanwu <48816116+youyuanwu@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:19:25 -0700 Subject: [PATCH] Prepare for 0.0.7 release (#45) Updated crates version to 0.0.7 --- Cargo.lock | 6 +++--- crates/libs/com/Cargo.toml | 4 ++-- crates/libs/com/README.md | 2 +- crates/libs/core/Cargo.toml | 4 ++-- crates/libs/core/README.md | 4 ++-- crates/libs/pal/Cargo.toml | 2 +- crates/libs/pal/README.md | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa8ce847..8fbce2c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,7 +230,7 @@ dependencies = [ [[package]] name = "mssf-com" -version = "0.0.6" +version = "0.0.7" dependencies = [ "mssf-metadata", "mssf-pal", @@ -240,7 +240,7 @@ dependencies = [ [[package]] name = "mssf-core" -version = "0.0.6" +version = "0.0.7" dependencies = [ "bitflags", "config", @@ -262,7 +262,7 @@ checksum = "39323a0ee935ad85894e31a9f42f2f41f5db403b7d2312d85e77b5a99eb8552d" [[package]] name = "mssf-pal" -version = "0.0.6" +version = "0.0.7" dependencies = [ "libc", "windows", diff --git a/crates/libs/com/Cargo.toml b/crates/libs/com/Cargo.toml index 70e5295e..4972acf0 100644 --- a/crates/libs/com/Cargo.toml +++ b/crates/libs/com/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mssf-com" -version = "0.0.6" +version = "0.0.7" edition = "2021" license = "MIT" description = "Rust for Azure Service Fabric. The COM base layer." @@ -24,7 +24,7 @@ targets = [] mssf-metadata = "0.0.1" [target.'cfg(unix)'.dependencies] -mssf-pal = { path = "../pal" , version = "0.0.6"} +mssf-pal = { path = "../pal" , version = "0.0.7"} [dependencies] windows-core = "0.57" diff --git a/crates/libs/com/README.md b/crates/libs/com/README.md index d9b96be5..b1d4417c 100644 --- a/crates/libs/com/README.md +++ b/crates/libs/com/README.md @@ -1,4 +1,4 @@ -# fabric_base +# mssf-com * This crate is generated from ServiceFabric winmd file by windows-bindgen. * [ServiceFabric.winmd](https://github.com/youyuanwu/fabric-metadata/tree/main/.windows/winmd) diff --git a/crates/libs/core/Cargo.toml b/crates/libs/core/Cargo.toml index c179a12f..98389e58 100644 --- a/crates/libs/core/Cargo.toml +++ b/crates/libs/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mssf-core" -version = "0.0.6" +version = "0.0.7" edition = "2021" license = "MIT" description = "Rust for Azure Service Fabric. Rust safe APIs." @@ -45,7 +45,7 @@ features = [ [dependencies.mssf-com] path = "../com" -version = "0.0.6" +version = "0.0.7" # requires return impl trait feature [package.metadata] diff --git a/crates/libs/core/README.md b/crates/libs/core/README.md index d485e1ff..82c13163 100644 --- a/crates/libs/core/README.md +++ b/crates/libs/core/README.md @@ -1,2 +1,2 @@ -# fabric_rs -This crate provides safe rust api for Service Fabric, wrapping around fabric_base crate. \ No newline at end of file +# mssf-core +This crate provides safe rust api for Service Fabric, wrapping around mssf-com crate. \ No newline at end of file diff --git a/crates/libs/pal/Cargo.toml b/crates/libs/pal/Cargo.toml index 3b0b69bf..5ac36941 100644 --- a/crates/libs/pal/Cargo.toml +++ b/crates/libs/pal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mssf-pal" -version = "0.0.6" +version = "0.0.7" edition = "2021" license = "MIT" description = "mssf-pal enables service fabric rust to run on linux" diff --git a/crates/libs/pal/README.md b/crates/libs/pal/README.md index 5eafc793..5c876822 100644 --- a/crates/libs/pal/README.md +++ b/crates/libs/pal/README.md @@ -1,4 +1,4 @@ -# pal (Platform Abstraction Layer) +# mssf-pal (Platform Abstraction Layer) This crate fills windows api needed for windows-rs to work in linux environment. It contains bare minimum WIN32 API substitute on linux to make windows-rs crate COM support working. Service Fabric Rust app and test all requires this pal shared library to work.