diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1972dd..c8b8036c 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.30.1] + - Change `ServiceEndpoint` field to be optional: - `description` - Change `AgentPoolQueue` field to be optional: @@ -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 diff --git a/azure_devops_rust_api/Cargo.toml b/azure_devops_rust_api/Cargo.toml index 8075f7f8..5f6be3fc 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.30.0" +version = "0.30.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 f8fcb355..ae486c6d 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.30.0", features = ["git", "pipelines"] } +azure_devops_rust_api = { version = "0.30.1", features = ["git", "pipelines"] } ``` ## Examples