Skip to content

Commit 6fbec54

Browse files
authored
prepare 2022 August Release (#994)
1 parent 0e9fd03 commit 6fbec54

275 files changed

Lines changed: 537 additions & 537 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

sdk/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azure_core"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Core crate"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]

sdk/data_cosmos/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azure_data_cosmos"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Azure Cosmos DB"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -16,7 +16,7 @@ edition = "2021"
1616

1717
[dependencies]
1818
async-trait = "0.1"
19-
azure_core = { path = "../core", version = "0.3" }
19+
azure_core = { path = "../core", version = "0.4" }
2020
base64 = "0.13"
2121
time = "0.3.10"
2222
futures = "0.3"

sdk/data_tables/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azure_data_tables"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Azure Table storage crate from the Azure SDK for Rust"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -13,8 +13,8 @@ categories = ["api-bindings"]
1313
edition = "2021"
1414

1515
[dependencies]
16-
azure_core = { path = "../core", version = "0.3" }
17-
azure_storage = { path = "../storage", version = "0.4", default-features = false }
16+
azure_core = { path = "../core", version = "0.4" }
17+
azure_storage = { path = "../storage", version = "0.5", default-features = false }
1818
bytes = "1.0"
1919
time = { version = "0.3.10", features = ["serde"] }
2020
futures = "0.3"

sdk/identity/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azure_identity"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Azure identity helper crate"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -13,7 +13,7 @@ categories = ["api-bindings"]
1313
edition = "2021"
1414

1515
[dependencies]
16-
azure_core = { path = "../core", version = "0.3" }
16+
azure_core = { path = "../core", version = "0.4" }
1717
async-lock = "2.5"
1818
oauth2 = { version = "4.0.0", default-features = false }
1919
url = "2.2"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "azure_device_update"
2+
name = "azure_iot_deviceupdate"
33
version = "0.1.0"
44
authors = ["roland.erk@conplement.de"]
55
description = "Rust wrapper around Microsoft Azure REST APIs for Azure Device Update"
66
repository = "https://github.com/azure/azure-sdk-for-rust"
77
homepage = "https://github.com/azure/azure-sdk-for-rust"
8-
documentation = "https://docs.rs/azure_device_update"
8+
documentation = "https://docs.rs/azure_iot_deviceupdate"
99
keywords = ["azure", "microsoft", "sdk", "device", "update", "cloud"]
1010
categories = ["api-bindings"]
1111
readme = "README.md"
@@ -21,7 +21,7 @@ serde_json = "1.0"
2121
url = "2.2"
2222
serde = { version = "1.0", features = ["derive"] }
2323
getset = "0.1"
24-
azure_core = { path = "../core", version = "0.3", default_features = false }
24+
azure_core = { path = "../core", version = "0.4", default_features = false }
2525
log = "0.4"
2626
azure_identity = { path = "../identity", default_features = false }
2727

File renamed without changes.

sdk/device_update/examples/delete_update.rs renamed to sdk/iot_deviceupdate/examples/delete_update.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use azure_device_update::DeviceUpdateClient;
21
use azure_identity::{ClientSecretCredential, TokenCredentialOptions};
2+
use azure_iot_deviceupdate::DeviceUpdateClient;
33
use std::{env, sync::Arc};
44

55
#[tokio::main]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use azure_device_update::DeviceUpdateClient;
21
use azure_identity::{ClientSecretCredential, TokenCredentialOptions};
2+
use azure_iot_deviceupdate::DeviceUpdateClient;
33
use std::{env, sync::Arc};
44

55
#[tokio::main]

sdk/device_update/examples/get_operation.rs renamed to sdk/iot_deviceupdate/examples/get_operation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use azure_device_update::DeviceUpdateClient;
21
use azure_identity::{ClientSecretCredential, TokenCredentialOptions};
2+
use azure_iot_deviceupdate::DeviceUpdateClient;
33
use std::{env, sync::Arc};
44

55
#[tokio::main]

0 commit comments

Comments
 (0)