Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"crates/protovalidate-buffa": "0.1.0",
"crates/protovalidate-buffa-protos": "0.1.1",
"crates/protovalidate-buffa-protos": "0.1.2",
"crates/protovalidate-buffa-macros": "0.1.0",
"crates/protoc-gen-protovalidate-buffa": "0.1.1",
"crates/protovalidate-buffa-conformance": "0.0.2"
"crates/protoc-gen-protovalidate-buffa": "0.1.2",
"crates/protovalidate-buffa-conformance": "0.0.3"
}
6 changes: 3 additions & 3 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions crates/protoc-gen-protovalidate-buffa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.1.2](https://github.com/mathematic-inc/protovalidate-buffa/compare/protoc-gen-protovalidate-buffa-v0.1.1...protoc-gen-protovalidate-buffa-v0.1.2) (2026-04-28)


### Bug Fixes

* Publish protovalidate-buffa-protos v0.1.1 with buffa 0.4 ([a31aff0](https://github.com/mathematic-inc/protovalidate-buffa/commit/a31aff0a91d65acb4c61fb9631ec0874df65e68f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* protovalidate-buffa-protos bumped from 0.1.1 to 0.1.2

## [0.1.1](https://github.com/mathematic-inc/protovalidate-buffa/compare/protoc-gen-protovalidate-buffa-v0.1.0...protoc-gen-protovalidate-buffa-v0.1.1) (2026-04-28)


Expand Down
4 changes: 2 additions & 2 deletions crates/protoc-gen-protovalidate-buffa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "protoc-gen-protovalidate-buffa"
description = "protoc plugin that emits static Rust Validate impls from buf.validate annotations for buffa-generated messages."
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -24,7 +24,7 @@ path = "src/main.rs"
[dependencies]
buffa = "0.4"
buffa-codegen = "0.4"
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.1" }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.2" }
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/protovalidate-buffa-conformance/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "protovalidate-buffa-conformance"
description = "Conformance executor for the upstream protovalidate-conformance harness."
version = "0.0.2"
version = "0.0.3"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -23,13 +23,13 @@ path = "src/main.rs"
buffa = "0.4"
buffa-types = "0.4"
protovalidate-buffa = { path = "../protovalidate-buffa", version = "0.1.0", default-features = false }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.0" }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.2" }
anyhow = "1"
regex = "1"

[build-dependencies]
buffa-build = "0.4"
protoc-gen-protovalidate-buffa = { path = "../protoc-gen-protovalidate-buffa", version = "0.1.1" }
protoc-gen-protovalidate-buffa = { path = "../protoc-gen-protovalidate-buffa", version = "0.1.2" }
buffa = "0.4"
buffa-codegen = "0.4"
anyhow = "1"
Expand Down
12 changes: 12 additions & 0 deletions crates/protovalidate-buffa-protos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.1.2](https://github.com/mathematic-inc/protovalidate-buffa/compare/protovalidate-buffa-protos-v0.1.1...protovalidate-buffa-protos-v0.1.2) (2026-04-28)


### Features

* Initial commit ([07b7a65](https://github.com/mathematic-inc/protovalidate-buffa/commit/07b7a65222855cc1f1ce0a6d24a119586d7d7e27))


### Bug Fixes

* Publish protovalidate-buffa-protos v0.1.1 with buffa 0.4 ([a31aff0](https://github.com/mathematic-inc/protovalidate-buffa/commit/a31aff0a91d65acb4c61fb9631ec0874df65e68f))

## 0.1.0 (2026-04-21)


Expand Down
2 changes: 1 addition & 1 deletion crates/protovalidate-buffa-protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "protovalidate-buffa-protos"
description = "Compiled Rust types for buf/validate/validate.proto (for buffa), consumed by protoc-gen-protovalidate-buffa."
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
Loading