Skip to content

Commit

Permalink
(cargo-release) {{crate_name}} version {{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Apr 27, 2023
1 parent d4dfed5 commit da41935
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 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.3.3] - 2023-04-27

### Changed

- Updated logos dependency to [0.13.0](https://github.com/maciejhirsz/logos/releases/tag/v0.13).
Expand Down Expand Up @@ -68,7 +70,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.1...HEAD
[Unreleased]: https://github.com/andrewhickman/protox/compare/0.3.3...HEAD
[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
[0.3.0]: https://github.com/andrewhickman/protox/compare/0.2.2...0.3.0
[0.2.2]: https://github.com/andrewhickman/protox/compare/0.2.1...0.2.2
Expand Down
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.3.1/status.svg)](https://deps.rs/crate/protox)
[![deps.rs](https://deps.rs/crate/protox/0.3.3/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)
Expand Down
2 changes: 1 addition & 1 deletion protox-parse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "protox-parse"
description = "Parsing of protobuf source files"
keywords = ["protobuf", "serialization"]
categories = ["compilers", "encoding", "parser-implementations"]
version = "0.3.2"
version = "0.3.3"
authors = ["Andrew Hickman <[email protected]>"]
repository = "https://github.com/andrewhickman/protox"
documentation = "https://docs.rs/protox-parse"
Expand Down
2 changes: 1 addition & 1 deletion protox-parse/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.2/")]
#![doc(html_root_url = "https://docs.rs/protox-parse/0.3.3/")]

use logos::Span;
use prost_types::FileDescriptorProto;
Expand Down
4 changes: 2 additions & 2 deletions 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.3.1"
version = "0.3.3"
authors = ["Andrew Hickman <[email protected]>"]
repository = "https://github.com/andrewhickman/protox"
documentation = "https://docs.rs/protox"
Expand Down Expand Up @@ -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.3.0", path = "../protox-parse" }
protox-parse = { version = "0.3.3", path = "../protox-parse" }
thiserror = "1.0.31"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion protox/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.1/")]
#![doc(html_root_url = "https://docs.rs/protox/0.3.3/")]

pub mod file;

Expand Down

0 comments on commit da41935

Please sign in to comment.