Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion sdk/core/azure_core_amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.1.0 (2026-07-08)

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure_core_amqp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# AMQP Stack for consumption by packages in the Azure SDK.
[package]
name = "azure_core_amqp"
version = "1.1.0-beta.1"
version = "1.1.0"
description = "Rust client library for the AMQP protocol"
readme = "README.md"
authors.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions sdk/eventhubs/azure_messaging_eventhubs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ async-lock.workspace = true
async-stream.workspace = true
async-trait.workspace = true
azure_core = { workspace = true, default-features = false }
# Unreleased: needs AmqpSessionOptions::with_unbounded_windows from 1.1.0-beta.1 (issue #4570).
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0-beta.1" }
# Needs AmqpSessionOptions::with_unbounded_windows, released in azure_core_amqp 1.1.0 (issue #4570).
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0" }
base64.workspace = true
futures.workspace = true
hmac.workspace = true
Expand All @@ -36,7 +36,7 @@ tracing.workspace = true
rustc_version.workspace = true

[dev-dependencies]
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0-beta.1", features = ["test"] }
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0", features = ["test"] }
azure_core_test = { workspace = true, features = ["tracing"] }
azure_identity.workspace = true
azure_messaging_eventhubs = { path = ".", features = [
Expand Down
6 changes: 3 additions & 3 deletions sdk/servicebus/azure_messaging_servicebus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ async-lock.workspace = true
async-stream.workspace = true
async-trait.workspace = true
azure_core = { workspace = true, default-features = false }
# Unreleased: needs AmqpSessionOptions::with_unbounded_windows from 1.1.0-beta.1 (issue #4570).
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0-beta.1" }
# Needs AmqpSessionOptions::with_unbounded_windows, released in azure_core_amqp 1.1.0 (issue #4570).
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0" }
futures.workspace = true
rand.workspace = true
rand_chacha.workspace = true
Expand All @@ -34,7 +34,7 @@ tracing.workspace = true
default = ["azure_core_amqp/default"]

[dev-dependencies]
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0-beta.1", features = ["test"] }
azure_core_amqp = { path = "../../core/azure_core_amqp", version = "1.1.0", features = ["test"] }
azure_core_test = { workspace = true, features = ["tracing"] }
azure_identity.workspace = true
serde_json.workspace = true
Expand Down
Loading