Skip to content

Commit c74a7d3

Browse files
committed
chore: bump version to 2.4.1
1 parent a4a5056 commit c74a7d3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codingbuddy",
3-
"version": "2.2.1",
3+
"version": "2.4.1",
44
"description": "Multi-AI Rules MCP Server - One source of truth for AI coding rules across all AI assistants",
55
"author": "JeremyDev87",
66
"license": "MIT",

apps/mcp-server/src/shared/version.utils.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ describe('getPackageVersion', () => {
1717
it('should return version from package.json', () => {
1818
const mockPackageJson = JSON.stringify({
1919
name: 'codingbuddy',
20-
version: '2.2.1',
20+
version: '2.4.1',
2121
});
2222

2323
vi.mocked(fs.readFileSync).mockReturnValue(mockPackageJson);
2424

2525
const version = getPackageVersion();
2626

27-
expect(version).toBe('2.2.1');
27+
expect(version).toBe('2.4.1');
2828
});
2929

3030
it('should read from correct package.json path', () => {

packages/rules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codingbuddy-rules",
3-
"version": "2.2.1",
3+
"version": "2.4.1",
44
"description": "AI coding rules for consistent practices across AI assistants",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)