From b3e30cf0aa41262976c58990e936e4637ecd1e6b Mon Sep 17 00:00:00 2001 From: John Batty Date: Sat, 15 Aug 2026 11:22:36 +0100 Subject: [PATCH] Release 0.39.1 Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 12 +++++++++++- azure_devops_rust_api/Cargo.toml | 2 +- azure_devops_rust_api/README.md | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb919b54..160e1292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.39.1] + +### Changes + +- Update crates.io package keywords. +- Migrate the `autorust` code generator to `syn` 3.0, along with routine + `autorust` dependency updates. These are build-time only: the generated + `azure_devops_rust_api` source is unchanged from 0.39.0. + ## [0.39.0] ### Changes @@ -737,7 +746,8 @@ breaking changes over previous versions. - Initial release. -[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.39.0...HEAD +[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.39.1...HEAD +[0.39.1]: https://github.com/microsoft/azure-devops-rust-api/compare/0.39.0...0.39.1 [0.39.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.38.0...0.39.0 [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 diff --git a/azure_devops_rust_api/Cargo.toml b/azure_devops_rust_api/Cargo.toml index 0c852c67..d6bf192a 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.39.0" +version = "0.39.1" 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 3201a053..cb452141 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.39.0", features = ["git", "pipelines"] } +azure_devops_rust_api = { version = "0.39.1", 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.39.0", features = ["artifacts_download"] } +azure_devops_rust_api = { version = "0.39.1", features = ["artifacts_download"] } ``` See [examples/download_artifact.rs](examples/download_artifact.rs) for a full usage example.