Skip to content

Commit

Permalink
Prepare for 0.0.7 release (#45)
Browse files Browse the repository at this point in the history
Updated crates version to 0.0.7
  • Loading branch information
youyuanwu authored Jun 28, 2024
1 parent cce27f7 commit acb9afc
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/libs/com/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/com/README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/core/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# fabric_rs
This crate provides safe rust api for Service Fabric, wrapping around fabric_base crate.
# mssf-core
This crate provides safe rust api for Service Fabric, wrapping around mssf-com crate.
2 changes: 1 addition & 1 deletion crates/libs/pal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/pal/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit acb9afc

Please sign in to comment.