Skip to content

Commit

Permalink
(cargo-release) protox version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Aug 15, 2024
1 parent db76ce7 commit cc3712e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
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.7.1] - 2024-08-15

## Fixed

- Improved error spans for import errors ([#80](https://github.com/andrewhickman/protox/pull/80))
Expand Down Expand Up @@ -124,7 +126,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.7.0...HEAD
[Unreleased]: https://github.com/andrewhickman/protox/compare/0.7.1...HEAD
[0.7.1]: https://github.com/andrewhickman/protox/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/andrewhickman/protox/compare/0.6.1...0.7.0
[0.6.1]: https://github.com/andrewhickman/protox/compare/0.6.0...0.6.1
[0.6.0]: https://github.com/andrewhickman/protox/compare/0.5.1...0.6.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.7.0/status.svg)](https://deps.rs/crate/protox)
[![deps.rs](https://deps.rs/crate/protox/0.7.1/status.svg)](https://deps.rs/crate/protox)
![MSRV](https://img.shields.io/badge/rustc-1.70+-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)
Expand Down
2 changes: 1 addition & 1 deletion protox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0"
version = "0.7.1"
authors = ["Andrew Hickman <[email protected]>"]
repository = "https://github.com/andrewhickman/protox"
documentation = "https://docs.rs/protox"
Expand Down
2 changes: 1 addition & 1 deletion protox/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
//! ```
#![warn(missing_debug_implementations, missing_docs)]
#![deny(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/protox/0.7.0/")]
#![doc(html_root_url = "https://docs.rs/protox/0.7.1/")]

pub mod file;

Expand Down

0 comments on commit cc3712e

Please sign in to comment.