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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ format changes.

## [Unreleased]

## [1.0.1] — 2026-05-13

Patch release fixing the Maven Central publish for v1.0.0. Two
javadoc `{@link Result#tables()}` references — in
`BindRow` and `ResultAccessorsTest` — survived the v1.0 rename
and broke the strict javadoc check inside the publish workflow.
Updated to `{@link Result#datasets()}`. No code or wire-format
change versus v1.0.0; the v1.0.0 tag exists in git but its
Maven Central artifact was never published.

## [1.0.0] — 2026-05-13

First major-version cut. Implements the three one-time spec changes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

allprojects {
group = "org.protowire"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion pxf/src/main/java/org/protowire/pxf/BindRow.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Per-row proto-binding helper for {@code @dataset} rows. Sits atop the
* streaming {@link DatasetReader} (via {@link DatasetReader#scan}) and is also
* exported as a standalone helper for callers that iterate the
* materializing path's {@link Result#tables()} rows.
* materializing path's {@link Result#datasets()} rows.
*
* <p>Implementation strategy: convert each non-{@code null} cell back to
* its PXF text representation, concatenate as a {@code <column> = <value>\n}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import static org.junit.jupiter.api.Assertions.assertTrue;

/**
* Verifies that {@link Result#directives()} and {@link Result#tables()}
* Verifies that {@link Result#directives()} and {@link Result#datasets()}
* are populated by {@link UnmarshalOptions#unmarshalFull} (the decode
* path now records the side-channel directives the prior PRs only
* skipped). Mirrors the Go-port test
Expand Down