Skip to content

Commit d5a6b9b

Browse files
author
ogmatrix
committed
fix: sync all version references to 0.1.3
1 parent 88b0edf commit d5a6b9b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.2"
2+
".": "0.1.3"
33
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcmodding-mcp",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "MCP server providing AI assistants with up-to-date Minecraft modding documentation for Fabric and NeoForge",
55
"type": "module",
66
"main": "dist/index.js",

scripts/generate-db-manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function main() {
1212
const args = process.argv.slice(2);
1313

1414
// Parse arguments
15-
let version = '0.1.2';
15+
let version = '0.1.3';
1616
let type: 'incremental' | 'full' = 'incremental';
1717
let changelog = 'Updated documentation index';
1818

scripts/generate-mod-examples-manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async function generateManifest(): Promise<void> {
9999

100100
// Parse command line arguments
101101
const args = process.argv.slice(2);
102-
const version = args.find((a) => a.startsWith('--version='))?.split('=')[1] || '0.1.2';
102+
const version = args.find((a) => a.startsWith('--version='))?.split('=')[1] || '0.1.3';
103103
const changelog =
104104
args.find((a) => a.startsWith('--changelog='))?.split('=')[1] || 'Mod examples update';
105105

0 commit comments

Comments
 (0)