From be0ec60f9034a561202b4fde1fac398cc8bed2d5 Mon Sep 17 00:00:00 2001 From: John Batty Date: Sat, 16 May 2026 20:57:30 +0100 Subject: [PATCH] Release 0.38.0 --- CHANGELOG.md | 5 ++++- azure_devops_rust_api/Cargo.toml | 2 +- azure_devops_rust_api/README.md | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a07d076..6eec9fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.38.0] + ### Changes - Update `azure_core` and `azure_identity` to 1.0. @@ -725,7 +727,8 @@ breaking changes over previous versions. - Initial release. -[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.37.0...HEAD +[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.38.0...HEAD +[0.38.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.37.0...0.38.0 [0.37.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.36.0...0.37.0 [0.36.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.35.0...0.36.0 [0.35.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.34.0...0.35.0 diff --git a/azure_devops_rust_api/Cargo.toml b/azure_devops_rust_api/Cargo.toml index 7abfeb75..90e97345 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.37.0" +version = "0.38.0" edition = "2021" authors = ["John Batty "] description = "Rust API library for Azure DevOps" diff --git a/azure_devops_rust_api/README.md b/azure_devops_rust_api/README.md index af1b2303..6d0eb1dc 100644 --- a/azure_devops_rust_api/README.md +++ b/azure_devops_rust_api/README.md @@ -14,7 +14,7 @@ The crate is autogenerated from the [Azure DevOps OpenAPI spec](https://github.c ```toml [dependencies] -azure_devops_rust_api = { version = "0.37.0", features = ["git", "pipelines"] } +azure_devops_rust_api = { version = "0.38.0", features = ["git", "pipelines"] } ``` 2. Set environment variables: @@ -152,7 +152,7 @@ Enable it with the `artifacts_download` feature: ```toml [dependencies] -azure_devops_rust_api = { version = "0.37.0", features = ["artifacts_download"] } +azure_devops_rust_api = { version = "0.38.0", features = ["artifacts_download"] } ``` See [examples/download_artifact.rs](examples/download_artifact.rs) for a full usage example.