Skip to content

Commit e64d27c

Browse files
authored
Prep 0.20.0 release (#1648)
* Prep 0.20.0 release
1 parent e581b20 commit e64d27c

File tree

305 files changed

+614
-614
lines changed

Some content is hidden

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

305 files changed

+614
-614
lines changed

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.19.0"
3+
version = "0.20.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.19.0"
3+
version = "0.20.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Azure Cosmos DB"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -14,7 +14,7 @@ edition = "2021"
1414

1515
[dependencies]
1616
async-trait = "0.1"
17-
azure_core = { path = "../core", version = "0.19" }
17+
azure_core = { path = "../core", version = "0.20" }
1818
time = "0.3.10"
1919
futures = "0.3"
2020
tracing = "0.1.40"

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.19.0"
3+
version = "0.20.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.19" }
17-
azure_storage = { path = "../storage", version = "0.19", default-features = false }
16+
azure_core = { path = "../core", version = "0.20" }
17+
azure_storage = { path = "../storage", version = "0.20", default-features = false }
1818
bytes = "1.0"
1919
time = "0.3.10"
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.19.0"
3+
version = "0.20.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.19" }
16+
azure_core = { path = "../core", version = "0.20" }
1717
async-lock = "3.0"
1818
oauth2 = { version = "4.0.0", default-features = false }
1919
url = "2.2"

sdk/iot_deviceupdate/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_iot_deviceupdate"
3-
version = "0.19.0"
3+
version = "0.20.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"
@@ -20,9 +20,9 @@ const_format = "0.2"
2020
serde_json = "1.0"
2121
serde = { version = "1.0", features = ["derive"] }
2222
getset = "0.1"
23-
azure_core = { path = "../core", version = "0.19", default-features = false }
23+
azure_core = { path = "../core", version = "0.20", default-features = false }
2424
tracing = "0.1.40"
25-
azure_identity = { path = "../identity", version = "0.19", default-features = false }
25+
azure_identity = { path = "../identity", version = "0.20", default-features = false }
2626

2727
[dev-dependencies]
2828
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }

sdk/iot_deviceupdate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ To set this crate as a dependency, add this to your Cargo.toml
88

99
```toml
1010
[dependencies]
11-
azure_iot_deviceupdate = { version = "0.19.0", git = "https://github.com/Azure/azure-sdk-for-rust" }
11+
azure_iot_deviceupdate = { version = "0.20.0", git = "https://github.com/Azure/azure-sdk-for-rust" }
1212
```

sdk/iot_hub/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_iot_hub"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Microsoft Corp."]
55
edition = "2021"
66
description = "Azure IoT Hub"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/azure_iot_hub"
1111

1212
[dependencies]
1313
async-trait = "0.1"
14-
azure_core = { path = "../core", version = "0.19", default-features = false }
14+
azure_core = { path = "../core", version = "0.20", default-features = false }
1515
bytes = "1.0"
1616
time = "0.3.10"
1717
serde = { version = "1.0", features = ["derive"] }

sdk/messaging_eventgrid/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_messaging_eventgrid"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
description = "Rust wrappers around Microsoft Azure Event Grid REST APIs"
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.19", default-features = false }
16+
azure_core = { path = "../core", version = "0.20", default-features = false }
1717
time = "0.3.10"
1818
serde = { version = "1.0", features = ["derive"] }
1919
uuid = { version = "1.0", features = ["v4"] }

sdk/messaging_servicebus/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_messaging_servicebus"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Service Bus crate"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -15,7 +15,7 @@ categories = ["api-bindings"]
1515
edition = "2021"
1616

1717
[dependencies]
18-
azure_core = { path = "../core", version = "0.19" }
18+
azure_core = { path = "../core", version = "0.20" }
1919
time = { version = "0.3.10", features = ["serde-well-known"] }
2020
tracing = "0.1.40"
2121
url = "2.2"

sdk/security_keyvault/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_security_keyvault"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Microsoft Corp."]
55
description = "Rust wrapper around Microsoft Azure REST APIs for Azure Key Vault"
66
repository = "https://github.com/azure/azure-sdk-for-rust"
@@ -18,7 +18,7 @@ futures = "0.3"
1818
time = "0.3"
1919
serde_json = "1.0"
2020
serde = { version = "1.0", features = ["derive"] }
21-
azure_core = { path = "../core", version = "0.19", default-features = false }
21+
azure_core = { path = "../core", version = "0.20", default-features = false }
2222

2323
[dev-dependencies]
2424
azure_identity = { path = "../identity", default-features = false }

sdk/storage/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_storage"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
description = "Azure Storage crate from the Azure SDK for Rust"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -14,7 +14,7 @@ edition = "2021"
1414

1515
[dependencies]
1616
async-trait = "0.1"
17-
azure_core = { path = "../core", version = "0.19", features = ["xml"] }
17+
azure_core = { path = "../core", version = "0.20", features = ["xml"] }
1818
time = "0.3.10"
1919
tracing = "0.1.40"
2020
serde = "1.0"

sdk/storage_blobs/Cargo.toml

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

1515
[dependencies]
16-
azure_core = { path = "../core", version = "0.19", features = ["xml"] }
17-
azure_storage = { path = "../storage", version = "0.19", default-features = false }
18-
azure_svc_blobstorage = {path="../../services/svc/blobstorage", version = "0.19", default-features=false, features=["default_tag"]}
16+
azure_core = { path = "../core", version = "0.20", features = ["xml"] }
17+
azure_storage = { path = "../storage", version = "0.20", default-features = false }
18+
azure_svc_blobstorage = {path="../../services/svc/blobstorage", version = "0.20", default-features=false, features=["default_tag"]}
1919
bytes = "1.0"
2020
time = "0.3.10"
2121
futures = "0.3"
@@ -36,7 +36,7 @@ mock_transport = { path = "../../eng/test/mock_transport" }
3636
md5 = "0.7"
3737
async-trait = "0.1"
3838
clap = { version = "4.0", features = ["derive", "env"] }
39-
azure_core = {path = "../core", version = "0.19", features = ["tokio-fs"]}
39+
azure_core = {path = "../core", version = "0.20", features = ["tokio-fs"]}
4040

4141
[features]
4242
default = ["enable_reqwest", "hmac_rust"]

sdk/storage_datalake/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_storage_datalake"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
description = "Azure Data Lake Storage Gen2 crate from the Azure SDK for Rust"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
@@ -14,8 +14,8 @@ edition = "2021"
1414

1515
[dependencies]
1616
async-trait = "0.1"
17-
azure_core = { path = "../core", version = "0.19" }
18-
azure_storage = { path = "../storage", version = "0.19", default-features = false }
17+
azure_core = { path = "../core", version = "0.20" }
18+
azure_storage = { path = "../storage", version = "0.20", default-features = false }
1919
bytes = "1.0"
2020
time = "0.3.10"
2121
futures = "0.3"

sdk/storage_queues/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_storage_queues"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
description = "Azure Queue 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.19", default-features=false, features = ["xml"] }
17-
azure_storage = { path = "../storage", version = "0.19", default-features=false }
16+
azure_core = { path = "../core", version = "0.20", default-features=false, features = ["xml"] }
17+
azure_storage = { path = "../storage", version = "0.20", default-features=false }
1818
time = "0.3.10"
1919
futures = "0.3"
2020
tracing = "0.1.40"

services/autorust/codegen/templates/Cargo.toml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# generated by AutoRust
22
[package]
33
name = "{{package_name}}"
4-
version = "0.19.0"
4+
version = "0.20.0"
55
edition = "2021"
66
license = "MIT"
77
description = "generated REST API bindings"
@@ -16,7 +16,7 @@ rust-version = "1.64.0"
1616
doctest = false
1717

1818
[dependencies]
19-
azure_core = { path = "../../../sdk/core", version = "0.19", features = [{%- for feature in azure_core_features -%}"{{feature}}", {%- endfor -%}] }
19+
azure_core = { path = "../../../sdk/core", version = "0.20", features = [{%- for feature in azure_core_features -%}"{{feature}}", {%- endfor -%}] }
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0"
2222
bytes = "1.3"

services/mgmt/activedirectory/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/addons/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/adhybridhealthservice/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/adp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/advisor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/agrifood/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mgmt/alertsmanagement/Cargo.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)