Updated versioning for hotfix release

This commit is contained in:
Lucas Dower 2022-10-13 17:44:50 +01:00
parent 46c3b09efb
commit e43cfabc2c
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"name": "objtoschematic",
"private": true,
"version": "0.6.0",
"version": "0.6.0.1",
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
"main": "./dist/src/main.js",
"engines": {

View File

@ -33,7 +33,7 @@ export class AppConfig {
private constructor() {
this.RELEASE_MODE = true;
this.RELEASE_VERSION = '0.6.0r';
this.RELEASE_VERSION = '0.6.0.1r';
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');