diff --git a/CHANGELOG.md b/CHANGELOG.md index 82ca8da..0db6ad1 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.4.1] - 2023-06-25 + ## Fixed - Fixed a panic while parsing an invalid file like `{ $`. @@ -92,7 +94,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.0...HEAD +[Unreleased]: https://github.com/andrewhickman/protox/compare/0.4.1...HEAD +[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 [0.3.4]: https://github.com/andrewhickman/protox/compare/0.3.3...0.3.4 diff --git a/README.md b/README.md index 30e806e..4742b6b 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.0/status.svg)](https://deps.rs/crate/protox) +[![deps.rs](https://deps.rs/crate/protox/0.4.1/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-parse/Cargo.toml b/protox-parse/Cargo.toml index 5959a17..e81c5f8 100644 --- a/protox-parse/Cargo.toml +++ b/protox-parse/Cargo.toml @@ -3,7 +3,7 @@ name = "protox-parse" description = "Parsing of protobuf source files" keywords = ["protobuf", "serialization"] categories = ["compilers", "encoding", "parser-implementations"] -version = "0.4.0" +version = "0.4.1" authors = ["Andrew Hickman "] repository = "https://github.com/andrewhickman/protox" documentation = "https://docs.rs/protox-parse" diff --git a/protox-parse/src/lib.rs b/protox-parse/src/lib.rs index ba2a245..4d6f053 100644 --- a/protox-parse/src/lib.rs +++ b/protox-parse/src/lib.rs @@ -3,7 +3,7 @@ //! See the documentation for [`parse()`] for details. #![warn(missing_debug_implementations, missing_docs)] #![deny(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/protox-parse/0.4.0/")] +#![doc(html_root_url = "https://docs.rs/protox-parse/0.4.1/")] use logos::Span; use prost_types::FileDescriptorProto; diff --git a/protox/Cargo.toml b/protox/Cargo.toml index 20abd80..d4eeef3 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.0" +version = "0.4.1" authors = ["Andrew Hickman "] repository = "https://github.com/andrewhickman/protox" documentation = "https://docs.rs/protox" @@ -46,7 +46,7 @@ miette = "5.8.0" prost = "0.11.0" prost-reflect = { version = "0.11.0", features = ["miette", "text-format"] } prost-types = "0.11.0" -protox-parse = { version = "0.4.0", path = "../protox-parse" } +protox-parse = { version = "0.4.1", path = "../protox-parse" } thiserror = "1.0.31" [dev-dependencies] diff --git a/protox/src/lib.rs b/protox/src/lib.rs index fdbc1aa..a17b8ff 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.0/")] +#![doc(html_root_url = "https://docs.rs/protox/0.4.1/")] pub mod file;