Skip to content

Bump packages to 0.1.7#91

Merged
madawei2699 merged 1 commit into
mainfrom
codex/release-0.1.7
Jun 16, 2026
Merged

Bump packages to 0.1.7#91
madawei2699 merged 1 commit into
mainfrom
codex/release-0.1.7

Conversation

@madawei2699

Copy link
Copy Markdown
Contributor

Summary

  • bump CraftDAG packages to 0.1.7 for the pre-redstone ComponentPlan and CLI work
  • sync the exported core version constant and bootstrap test

Validation

  • pnpm test
  • pnpm typecheck
  • pnpm lint

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the version of several packages to 0.1.7, including package.json files, the core library's version constant, and its associated test. The reviewer suggests importing and exporting the version directly from package.json in the core library to avoid manual updates and prevent the version constant from falling out of sync.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

export * from "./metadata/materials.js";
export * from "./metadata/layers.js";
export const version = "0.1.5";
export const version = "0.1.7";

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Hardcoding the version string here is prone to getting out of sync with package.json (as seen in the previous mismatch where the package was 0.1.6 but this constant was 0.1.5). We can avoid manual updates by exporting the version directly from package.json.

Suggested change
export const version = "0.1.7";
export { version } from "../package.json";

@madawei2699 madawei2699 merged commit 5f2001b into main Jun 16, 2026
1 check passed
@madawei2699 madawei2699 deleted the codex/release-0.1.7 branch June 16, 2026 14:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant