release: cut v1.0.0#43
Merged
Merged
Conversation
Promote [Unreleased] → [1.0.0] — 2026-05-13. Bump the Gradle group version from 0.70.0 to 1.0.0 (the 0.70.0 was an internal-pre-release placeholder; the tagged 0.75.0 release left the build.gradle.kts version unchanged, which is a pre-existing latent inconsistency this release fixes en route to the major bump). First major-version cut. Implements the three one-time spec changes from the protowire v1.0 freeze line (STABILITY.md in the spec repo) in lockstep with protowire, protowire-go, and protowire-typescript. Headline changes (full detail in the [1.0.0] section): - @table → @dataset rename (draft §3.4.4). Public API follows: Ast.TableDirective → Ast.DatasetDirective, Ast.TableRow → Ast.DatasetRow, TableReader → DatasetReader, Document.tables() → Document.datasets(), Result.tables() → Result.datasets(). Hard cutover, no alias. - @proto directive (draft §3.4.5). New Ast.ProtoDirective + Ast.ProtoShape enum (ANONYMOUS, NAMED, SOURCE, DESCRIPTOR); Document.protos() / Result.protos(). Four body shapes lexically distinguished. - Reserved directive names expanded from 5 to 13 (draft §3.4.6). Decoder rejects @table, @Datasource, @view, @procedure, @function, @permissions as spec-reserved. Wire format: breaking. v1.0.0 documents are NOT decodable by pre-v1.0 ports; pre-v1.0 documents using @table are NOT decodable by v1.0.0. This is the major bump. After merge, tag v1.0.0 on main; the Maven publish workflow fires on tag push.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First major-version cut. Implements the three one-time spec changes from the protowire v1.0 freeze line (STABILITY.md) in lockstep with
protowire,protowire-go, andprotowire-typescript. Breaking — there is no alias period; v1.0 is itself the major bump.Promotes the existing [Unreleased] section (landed in #42) to [1.0.0] — 2026-05-13 and bumps the Gradle
versionfrom0.70.0to1.0.0. The0.70.0had been left inbuild.gradle.ktssince the v0.70.0 baseline — the tagged v0.75.0 release didn't bump it, a pre-existing latent inconsistency this release fixes.Headline changes
@table→@datasetrename (draft §3.4.4). Public API rename surface:Ast.TableDirective→Ast.DatasetDirective,TableReader→DatasetReader,Document.tables()→Document.datasets(),Result.tables()→Result.datasets().@protodirective added (draft §3.4.5). Four body shapes lexically distinguished (ANONYMOUS,NAMED,SOURCE,DESCRIPTOR).Wire format
Breaking. v1.0.0 documents are not decodable by pre-v1.0 ports; pre-v1.0 documents using
@tableare not decodable by v1.0.0.After merge
Tag
v1.0.0on main; the Maven publish workflow fires on tag push. The JetBrains plugin's embedded parser jar refresh in the spec repo (scripts/refresh_jetbrains_parser_jar.sh) picks up the v1.0.0 artifact afterward.Companion releases (in flight):