Bump packages to 0.1.7#91
Conversation
There was a problem hiding this comment.
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"; |
There was a problem hiding this comment.
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.
| export const version = "0.1.7"; | |
| export { version } from "../package.json"; |
Summary
Validation