Skip to content

Commit

Permalink
bumped pack versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vytdev committed Jun 15, 2024
1 parent afe937d commit a7af84a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions BP/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"header": {
"name": "Catalyst (BEH)",
"description": "A simple add-on to enchance your vanilla Minecraft Bedrock SMPs",
"version": "0.2.0-beta.2",
"version": "0.3.0-beta.1",
"uuid": "550b753c-39bd-4cba-98ce-95ccf8a9256c",
"min_engine_version": [ 1, 20, 50 ]
"min_engine_version": [ 1, 21, 0 ]
},

"modules": [
Expand All @@ -29,11 +29,11 @@
"dependencies": [
{
"uuid": "9541e7d4-12a5-4908-ab76-5095fb4c1368",
"version": "0.2.0-beta.2"
"version": "0.3.0-beta.1"
},
{
"module_name": "@minecraft/server",
"version": "1.9.0-beta"
"version": "1.12.0-beta"
},
{
"module_name": "@minecraft/server-ui",
Expand All @@ -46,4 +46,4 @@
"license": "MIT",
"url": "https://github.com/vytdev/catalyst"
}
}
}
8 changes: 4 additions & 4 deletions RP/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"header": {
"name": "Catalyst (RES)",
"description": "A simple add-on to enchance your vanilla Minecraft Bedrock SMPs",
"version": "0.2.0-beta.2",
"version": "0.3.0-beta.1",
"uuid": "9541e7d4-12a5-4908-ab76-5095fb4c1368",
"min_engine_version": [ 1, 20, 50 ]
"min_engine_version": [ 1, 21, 0 ]
},

"modules": [
Expand All @@ -21,7 +21,7 @@
"dependencies": [
{
"uuid": "550b753c-39bd-4cba-98ce-95ccf8a9256c",
"version": "0.2.0-beta.2"
"version": "0.3.0-beta.1"
}
],

Expand All @@ -30,4 +30,4 @@
"license": "MIT",
"url": "https://github.com/vytdev/catalyst"
}
}
}
4 changes: 2 additions & 2 deletions src/catalyst/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const events = new EventManager<defaultEvents>();
/**
* the version of catalyst core
*/
export const VERSION = "0.2.0-beta.2";
export const VERSION = "0.3.0-beta.1";

// preload and export modules
export * from "./command.js";
Expand Down Expand Up @@ -63,4 +63,4 @@ system.runInterval(() => {
system.beforeEvents.watchdogTerminate.subscribe(ev => {

Check failure on line 63 in src/catalyst/core/index.ts

View workflow job for this annotation

GitHub Actions / build

Property 'beforeEvents' does not exist on type 'System'.

Check failure on line 63 in src/catalyst/core/index.ts

View workflow job for this annotation

GitHub Actions / build

Parameter 'ev' implicitly has an 'any' type.
ev.cancel = true;
console.error("Watchdog: " + ev.terminateReason);
});
});

0 comments on commit a7af84a

Please sign in to comment.