From 2123aa3f93bd4e671866d3995933d2dbafe627bd Mon Sep 17 00:00:00 2001 From: John Batty Date: Sun, 7 Jan 2024 21:30:48 +0000 Subject: [PATCH] Update azure_core,azure_identity to 0.19 --- CHANGELOG.md | 7 ++++++- azure_devops_rust_api/Cargo.toml | 6 +++--- azure_devops_rust_api/README.md | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2df930c..b35fc5a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### [0.16.0] + +- Upgrade `azure_core`, `azure_identity` to 0.19 + ### [0.15.1] ### Added @@ -376,7 +380,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.15.1...HEAD +[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.16.0...HEAD +[0.16.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.15.1...0.16.0 [0.15.1]: https://github.com/microsoft/azure-devops-rust-api/compare/0.15.0...0.15.1 [0.15.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.14.3...0.15.0 [0.14.3]: https://github.com/microsoft/azure-devops-rust-api/compare/0.14.2...0.14.3 diff --git a/azure_devops_rust_api/Cargo.toml b/azure_devops_rust_api/Cargo.toml index e815c7ba..c3e18897 100644 --- a/azure_devops_rust_api/Cargo.toml +++ b/azure_devops_rust_api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "azure_devops_rust_api" -version = "0.15.1" +version = "0.16.0" edition = "2021" authors = ["John Batty "] description = "Rust API library for Azure DevOps" @@ -23,7 +23,7 @@ rust-version = "1.64.0" doctest = false [dependencies] -azure_core = { version = "0.18", default-features = true } +azure_core = { version = "0.19", default-features = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" bytes = "1.0" @@ -32,7 +32,7 @@ base64 = "0.21" time = "0.3" [dev-dependencies] -azure_identity = "0.18" +azure_identity = "0.19" tokio = { version = "1.0", features = ["full"] } anyhow = "1" log = "0.4" diff --git a/azure_devops_rust_api/README.md b/azure_devops_rust_api/README.md index 6d384e34..66600ae6 100644 --- a/azure_devops_rust_api/README.md +++ b/azure_devops_rust_api/README.md @@ -67,7 +67,7 @@ Example application `Cargo.toml` dependency spec showing how to specify desired ```toml [dependencies] ... -azure_devops_rust_api = { version = "0.15.1", features = ["git", "pipelines"] } +azure_devops_rust_api = { version = "0.16.0", features = ["git", "pipelines"] } ``` ## Examples