Skip to content
Merged
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion azure_devops_rust_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "azure_devops_rust_api"
version = "0.39.0"
version = "0.39.1"
edition = "2021"
authors = ["John Batty <johnbatty@microsoft.com>"]
description = "Rust API library for Azure DevOps"
Expand Down
4 changes: 2 additions & 2 deletions azure_devops_rust_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down
Loading