Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump crate versions in prep of 2023-02 release #1215

Merged
merged 3 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_core"
version = "0.8.0"
version = "0.10.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be 0.9.0?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I commented on the PR on this. I intentionally bumped azure_core to 0.10.0 to reduce the burden of having to keep track of different version numbers for different crates.

description = "Rust wrappers around Microsoft Azure REST APIs - Core crate"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand Down Expand Up @@ -53,4 +53,4 @@ enable_reqwest_gzip = ["reqwest/gzip"]
enable_reqwest_rustls = ["reqwest/rustls-tls"]
test_e2e = []
azurite_workaround = []
xml = ["serde-xml-rs"]
xml = ["serde-xml-rs"]
4 changes: 2 additions & 2 deletions sdk/data_cosmos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_data_cosmos"
version = "0.9.0"
version = "0.10.0"
description = "Rust wrappers around Microsoft Azure REST APIs - Azure Cosmos DB"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -15,7 +15,7 @@ rust-version = "1.64.0"

[dependencies]
async-trait = "0.1"
azure_core = { path = "../core", version = "0.8" }
azure_core = { path = "../core", version = "0.10" }
base64 = "0.13"
time = "0.3.10"
futures = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions sdk/data_tables/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_data_tables"
version = "0.9.0"
version = "0.10.0"
description = "Azure Table storage crate from the Azure SDK for Rust"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -14,8 +14,8 @@ edition = "2021"
rust-version = "1.64.0"

[dependencies]
azure_core = { path = "../core", version = "0.8" }
azure_storage = { path = "../storage", version = "0.9", default-features = false }
azure_core = { path = "../core", version = "0.10" }
azure_storage = { path = "../storage", version = "0.10", default-features = false }
bytes = "1.0"
time = "0.3.10"
futures = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_identity"
version = "0.9.0"
version = "0.10.0"
description = "Rust wrappers around Microsoft Azure REST APIs - Azure identity helper crate"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -13,7 +13,7 @@ categories = ["api-bindings"]
edition = "2021"

[dependencies]
azure_core = { path = "../core", version = "0.8" }
azure_core = { path = "../core", version = "0.10" }
async-lock = "2.5"
oauth2 = { version = "4.0.0", default-features = false }
url = "2.2"
Expand Down
4 changes: 2 additions & 2 deletions sdk/iot_deviceupdate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ serde_json = "1.0"
url = "2.2"
serde = { version = "1.0", features = ["derive"] }
getset = "0.1"
azure_core = { path = "../core", version = "0.8", default_features = false }
azure_core = { path = "../core", version = "0.10", default_features = false }
log = "0.4"
azure_identity = { path = "../identity", version="0.9", default_features = false }
azure_identity = { path = "../identity", version="0.10", default_features = false }

[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions sdk/iot_hub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_iot_hub"
version = "0.8.0"
version = "0.10.0"
authors = ["Microsoft Corp."]
edition = "2021"
description = "Azure IoT Hub"
Expand All @@ -9,7 +9,7 @@ rust-version = "1.64.0"

[dependencies]
async-trait = "0.1"
azure_core = { path = "../core", version = "0.8", default_features = false }
azure_core = { path = "../core", version = "0.10", default_features = false }
base64 = "0.20"
bytes = "1.0"
time = "0.3.10"
Expand Down
4 changes: 2 additions & 2 deletions sdk/messaging_eventgrid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_messaging_eventgrid"
version = "0.8.0"
version = "0.10.0"
description = "Rust wrappers around Microsoft Azure Event Grid REST APIs"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -13,7 +13,7 @@ categories = ["api-bindings"]
edition = "2021"

[dependencies]
azure_core = { path = "../core", version = "0.8", default_features = false }
azure_core = { path = "../core", version = "0.10", default_features = false }
time = "0.3.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions sdk/messaging_servicebus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_messaging_servicebus"
version = "0.8.0"
version = "0.10.0"
description = "Rust wrappers around Microsoft Azure REST APIs - Service Bus crate"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -15,7 +15,7 @@ categories = ["api-bindings"]
edition = "2021"

[dependencies]
azure_core = { path = "../core", version = "0.8" }
azure_core = { path = "../core", version = "0.10" }
base64 = "0.13"
time = "0.3.10"
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions sdk/security_keyvault/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_security_keyvault"
version = "0.8.0"
version = "0.10.0"
authors = ["Microsoft Corp."]
description = "Rust wrapper around Microsoft Azure REST APIs for Azure Key Vault"
repository = "https://github.com/azure/azure-sdk-for-rust"
Expand All @@ -22,7 +22,7 @@ const_format = "0.2.13"
serde_json = "1.0"
url = "2.2"
serde = { version = "1.0", features = ["derive"] }
azure_core = { path = "../core", version = "0.8", default-features = false }
azure_core = { path = "../core", version = "0.10", default-features = false }

[dev-dependencies]
azure_identity = { path = "../identity", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_storage"
version = "0.9.0"
version = "0.10.0"
description = "Azure Storage crate from the Azure SDK for Rust"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -15,7 +15,7 @@ rust-version = "1.64.0"

[dependencies]
async-trait = "0.1"
azure_core = { path = "../core", version = "0.8", features = ["xml"] }
azure_core = { path = "../core", version = "0.10", features = ["xml"] }
base64 = "0.13"
time = "0.3.10"
futures = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions sdk/storage_blobs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_storage_blobs"
version = "0.9.0"
version = "0.10.0"
description = "Azure Blob Storage crate from the Azure SDK for Rust"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -14,8 +14,8 @@ edition = "2021"
rust-version = "1.64.0"

[dependencies]
azure_core = { path = "../core", version = "0.8", features = ["xml"] }
azure_storage = { path = "../storage", version = "0.9", default-features = false }
azure_core = { path = "../core", version = "0.10", features = ["xml"] }
azure_storage = { path = "../storage", version = "0.10", default-features = false }
base64 = "0.13"
bytes = "1.0"
time = "0.3.10"
Expand Down
6 changes: 3 additions & 3 deletions sdk/storage_datalake/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_storage_datalake"
version = "0.9.0"
version = "0.10.0"
description = "Azure Data Lake Storage Gen2 crate from the Azure SDK for Rust"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -15,8 +15,8 @@ rust-version = "1.64.0"

[dependencies]
async-trait = "0.1"
azure_core = { path = "../core", version = "0.8" }
azure_storage = { path = "../storage", version = "0.9", default_features = false }
azure_core = { path = "../core", version = "0.10" }
azure_storage = { path = "../storage", version = "0.10", default_features = false }
base64 = "0.13"
bytes = "1.0"
time = "0.3.10"
Expand Down
6 changes: 3 additions & 3 deletions sdk/storage_queues/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_storage_queues"
version = "0.9.0"
version = "0.10.0"
description = "Azure Queue Storage crate from the Azure SDK for Rust"
readme = "README.md"
authors = ["Microsoft Corp."]
Expand All @@ -14,8 +14,8 @@ edition = "2021"
rust-version = "1.64.0"

[dependencies]
azure_core = { path = "../core", version = "0.8", default-features=false, features = ["xml"] }
azure_storage = { path = "../storage", version = "0.9", default-features=false }
azure_core = { path = "../core", version = "0.10", default-features=false, features = ["xml"] }
azure_storage = { path = "../storage", version = "0.10", default-features=false }
time = "0.3.10"
futures = "0.3"
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions services/autorust/codegen/templates/Cargo.toml.jinja
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# generated by AutoRust
[package]
name = "{{package_name}}"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
license = "MIT"
description = "generated REST API bindings"
Expand All @@ -16,7 +16,7 @@ rust-version = "1.64.0"
doctest = false

[dependencies]
azure_core = { path = "../../../sdk/core", version = "0.8", features = [{%- for feature in azure_core_features -%}"{{feature}}", {%- endfor -%}] }
azure_core = { path = "../../../sdk/core", version = "0.10", features = [{%- for feature in azure_core_features -%}"{{feature}}", {%- endfor -%}] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bytes = "1.3"
Expand Down