diff --git a/CHANGELOG.md b/CHANGELOG.md index b2d4f0f..29c7fb7 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.3.5] - 2023-06-05 + ### Changed - The error when reading invalid UTF-8 is now classified as a parse error, not an IO error. @@ -80,7 +82,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.3.4...HEAD +[Unreleased]: https://github.com/andrewhickman/protox/compare/0.3.5...HEAD +[0.3.5]: https://github.com/andrewhickman/protox/compare/0.3.4...0.3.5 [0.3.4]: https://github.com/andrewhickman/protox/compare/0.3.3...0.3.4 [0.3.3]: https://github.com/andrewhickman/protox/compare/0.3.1...0.3.3 [0.3.1]: https://github.com/andrewhickman/protox/compare/0.3.0...0.3.1 diff --git a/README.md b/README.md index 6b53894..e9c3eb9 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.3.4/status.svg)](https://deps.rs/crate/protox) +[![deps.rs](https://deps.rs/crate/protox/0.3.5/status.svg)](https://deps.rs/crate/protox) ![MSRV](https://img.shields.io/badge/rustc-1.60+-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 ac42517..705738f 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.3.4" +version = "0.3.5" 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 28f9036..f5904a4 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.3.4/")] +#![doc(html_root_url = "https://docs.rs/protox/0.3.5/")] pub mod file;