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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.30.1]

- Change `ServiceEndpoint` field to be optional:
- `description`
- Change `AgentPoolQueue` field to be optional:
Expand Down Expand Up @@ -612,7 +614,8 @@ breaking changes over previous versions.

- Initial release.

[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.30.0...HEAD
[Unreleased]: https://github.com/microsoft/azure-devops-rust-api/compare/0.30.1...HEAD
[0.30.1]: https://github.com/microsoft/azure-devops-rust-api/compare/0.30.0...0.30.1
[0.30.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.29.0...0.30.0
[0.29.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.28.0...0.29.0
[0.28.0]: https://github.com/microsoft/azure-devops-rust-api/compare/0.27.0...0.28.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.30.0"
version = "0.30.1"
edition = "2021"
authors = ["John Batty <johnbatty@microsoft.com>"]
description = "Rust API library for Azure DevOps"
Expand Down
2 changes: 1 addition & 1 deletion azure_devops_rust_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Example application `Cargo.toml` dependency spec showing how to specify desired
```toml
[dependencies]
...
azure_devops_rust_api = { version = "0.30.0", features = ["git", "pipelines"] }
azure_devops_rust_api = { version = "0.30.1", features = ["git", "pipelines"] }
```

## Examples
Expand Down