From 3e5630766d6c3fce7ec76e9b495add6dd32654df Mon Sep 17 00:00:00 2001 From: Andrew Hickman Date: Sat, 2 Sep 2023 00:59:18 +0100 Subject: [PATCH] (cargo-release) protox version 0.5.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- README.md | 2 +- protox/Cargo.toml | 2 +- protox/src/lib.rs | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2136787..451e5c8 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.5.0] - 2023-09-01 + ### Changed - The minimum supported rust version is now **1.64.0**. @@ -100,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Setting extension options in .proto source files is not supported - Some validation checks are missing -[Unreleased]: https://github.com/andrewhickman/protox/compare/0.4.1...HEAD +[Unreleased]: https://github.com/andrewhickman/protox/compare/0.5.0...HEAD +[0.5.0]: https://github.com/andrewhickman/protox/compare/0.4.1...0.5.0 [0.4.1]: https://github.com/andrewhickman/protox/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/andrewhickman/protox/compare/0.3.5...0.4.0 [0.3.5]: https://github.com/andrewhickman/protox/compare/0.3.4...0.3.5 diff --git a/Cargo.lock b/Cargo.lock index a4a730d..ad341b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,7 +681,7 @@ dependencies = [ [[package]] name = "protox" -version = "0.4.1" +version = "0.5.0" dependencies = [ "bytes", "clap", diff --git a/README.md b/README.md index 8786009..548fc20 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![crates.io](https://img.shields.io/crates/v/protox.svg)](https://crates.io/crates/protox/) [![docs.rs](https://docs.rs/protox/badge.svg)](https://docs.rs/protox/) -[![deps.rs](https://deps.rs/crate/protox/0.4.1/status.svg)](https://deps.rs/crate/protox) +[![deps.rs](https://deps.rs/crate/protox/0.5.0/status.svg)](https://deps.rs/crate/protox) ![MSRV](https://img.shields.io/badge/rustc-1.64+-blue.svg) [![Continuous integration](https://github.com/andrewhickman/protox/actions/workflows/ci.yml/badge.svg)](https://github.com/andrewhickman/protox/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/andrewhickman/protox/branch/main/graph/badge.svg?token=9YKHGUUPUX)](https://codecov.io/gh/andrewhickman/protox) diff --git a/protox/Cargo.toml b/protox/Cargo.toml index 3c93248..c05813f 100644 --- a/protox/Cargo.toml +++ b/protox/Cargo.toml @@ -3,7 +3,7 @@ name = "protox" description = "A rust implementation of the protobuf compiler." keywords = ["protobuf", "serialization"] categories = ["compilers", "encoding", "development-tools::build-utils"] -version = "0.4.1" +version = "0.5.0" authors = ["Andrew Hickman "] repository = "https://github.com/andrewhickman/protox" documentation = "https://docs.rs/protox" diff --git a/protox/src/lib.rs b/protox/src/lib.rs index a17b8ff..ed2ca1f 100644 --- a/protox/src/lib.rs +++ b/protox/src/lib.rs @@ -22,7 +22,7 @@ //! [`miette::Result`](https://docs.rs/miette/latest/miette/type.Result.html) from your `main()` function. #![warn(missing_debug_implementations, missing_docs)] #![deny(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/protox/0.4.1/")] +#![doc(html_root_url = "https://docs.rs/protox/0.5.0/")] pub mod file;