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
9 changes: 5 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"crates/protovalidate-buffa": "0.0.0",
"crates/protovalidate-buffa-protos": "0.0.0",
"crates/protovalidate-buffa-macros": "0.0.0",
"crates/protoc-gen-protovalidate-buffa": "0.0.0"
"crates/protovalidate-buffa": "0.1.0",
"crates/protovalidate-buffa-protos": "0.1.0",
"crates/protovalidate-buffa-macros": "0.1.0",
"crates/protoc-gen-protovalidate-buffa": "0.1.0",
"crates/protovalidate-buffa-conformance": "0.0.1"
}
10 changes: 5 additions & 5 deletions Cargo.lock

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

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

## 0.1.0 (2026-04-21)


### Features

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


### Dependencies

* The following workspace dependencies were updated
* dependencies
* protovalidate-buffa-protos bumped from 0.0.0 to 0.1.0
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.0.0"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -24,7 +24,7 @@ path = "src/main.rs"
[dependencies]
buffa = "0.3"
buffa-codegen = "0.3"
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.0.0" }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.0" }
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full"] }
Expand Down
8 changes: 4 additions & 4 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.0"
version = "0.0.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -22,14 +22,14 @@ path = "src/main.rs"
[dependencies]
buffa = "0.3"
buffa-types = "0.3"
protovalidate-buffa = { path = "../protovalidate-buffa", version = "0.0.0", default-features = false }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.0.0" }
protovalidate-buffa = { path = "../protovalidate-buffa", version = "0.1.0", default-features = false }
protovalidate-buffa-protos = { path = "../protovalidate-buffa-protos", version = "0.1.0" }
anyhow = "1"
regex = "1"

[build-dependencies]
buffa-build = "0.3"
protoc-gen-protovalidate-buffa = { path = "../protoc-gen-protovalidate-buffa", version = "0.0.0" }
protoc-gen-protovalidate-buffa = { path = "../protoc-gen-protovalidate-buffa", version = "0.1.0" }
buffa = "0.3"
buffa-codegen = "0.3"
anyhow = "1"
Expand Down
8 changes: 8 additions & 0 deletions crates/protovalidate-buffa-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2026-04-21)


### Features

* Initial commit ([07b7a65](https://github.com/mathematic-inc/protovalidate-buffa/commit/07b7a65222855cc1f1ce0a6d24a119586d7d7e27))
2 changes: 1 addition & 1 deletion crates/protovalidate-buffa-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "protovalidate-buffa-macros"
description = "Proc-macro companion to protovalidate-buffa — #[connect_impl] on Connect service impls."
version = "0.0.0"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions crates/protovalidate-buffa-protos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2026-04-21)


### Features

* Initial commit ([07b7a65](https://github.com/mathematic-inc/protovalidate-buffa/commit/07b7a65222855cc1f1ce0a6d24a119586d7d7e27))
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.0.0"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions crates/protovalidate-buffa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## 0.1.0 (2026-04-21)


### Features

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


### Dependencies

* The following workspace dependencies were updated
* dependencies
* protovalidate-buffa-macros bumped from 0.0.0 to 0.1.0
4 changes: 2 additions & 2 deletions crates/protovalidate-buffa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "protovalidate-buffa"
description = "Runtime for protoc-gen-protovalidate-buffa — Validate trait, ValidationError types, CEL integration, rule helpers."
version = "0.0.0"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -20,7 +20,7 @@ connect = ["dep:connectrpc"]

[dependencies]
buffa = "0.3"
protovalidate-buffa-macros = { path = "../protovalidate-buffa-macros", version = "0.0.0" }
protovalidate-buffa-macros = { path = "../protovalidate-buffa-macros", version = "0.1.0" }
regex = "1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
cel-interpreter = "0.10"
Expand Down
Loading