Skip to content

Conversation

@dyoshikawa
Copy link
Owner

Release v5.0.0

This PR bumps the version to 5.0.0.

See the release notes for details: https://github.com/dyoshikawa/rulesync/releases/tag/v5.0.0

Claude Code and others added 2 commits December 31, 2025 20:16
Copilot AI review requested due to automatic review settings January 1, 2026 04:17
@dyoshikawa dyoshikawa merged commit 1c3c368 into main Jan 1, 2026
7 checks passed
@dyoshikawa dyoshikawa deleted the release/v5.0.0 branch January 1, 2026 04:17
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR bumps the project version from 4.3.2 to 5.0.0, marking a major release. The version is updated in both the package manifest and the CLI version display function.

  • Updated package.json version field to 5.0.0
  • Updated CLI getVersion() function to return 5.0.0

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
package.json Updates the package version field from 4.3.2 to 5.0.0
src/cli/index.ts Updates the hardcoded version string in getVersion() function from 4.3.2 to 5.0.0

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

import { mcpCommand } from "./commands/mcp.js";

const getVersion = () => "4.3.2";
const getVersion = () => "5.0.0";
Copy link

Copilot AI Jan 1, 2026

Choose a reason for hiding this comment

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

The version is hardcoded in both package.json and this file, which requires updating two places during version bumps and risks inconsistency. Consider importing the version directly from package.json using an import assertion or reading it dynamically to maintain a single source of truth. For example, you could use: import pkg from "../../package.json" with { type: "json" }; and then const getVersion = () => pkg.version;

Copilot uses AI. Check for mistakes.
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