Bump version to 0.59.0

This commit is contained in:
ousttrue
2020-08-25 21:04:27 +09:00
parent 09a46eb2d7
commit d005a7f5fd
5 changed files with 44 additions and 16 deletions

View File

@@ -1,9 +1,14 @@
{
"name" : "com.vrmc.meshutility",
"displayName" : "MeshUtility",
"version" : "0.58.1",
"unity" : "2018.4",
"description" : "MeshUtility is a package for mesh separation, etc. \n\nCheck out the latest information here: <https://github.com/vrm-c/UniVRM/tree/master/Assets/MeshUtility>",
"keywords" : [ "mesh" ],
"author" : { "name": "VRM Consortium" }
}
{
"name": "com.vrmc.meshutility",
"version": "0.59.0",
"displayName": "MeshUtility",
"unity": "2018.4",
"description": "MeshUtility is a package for mesh separation, etc. \n\nCheck out the latest information here: <https://github.com/vrm-c/UniVRM/tree/master/Assets/MeshUtility>",
"keywords": [
"mesh"
],
"author": {
"name": "VRM Consortium"
}
}

View File

@@ -37,6 +37,24 @@ namespace VRM
}}
}}
";
const string MeshUtilityPath = "Assets/MeshUtility/package.json";
const string MeshUtilityTemplate = @"{{
{{
""name"": ""com.vrmc.meshutility"",
""version"": ""{0}.{1}.{2}"",
""displayName"": ""MeshUtility"",
""unity"": ""2018.4"",
""description"": ""MeshUtility is a package for mesh separation, etc. \n\nCheck out the latest information here: <https://github.com/vrm-c/UniVRM/tree/master/Assets/MeshUtility>"",
""keywords"": [
""mesh""
],
""author"": {{
""name"": ""VRM Consortium""
}}
}}
";
const string VRMPackagePath = "Assets/VRM/package.json";
const string VRMPackageTemplate = @"{{
""name"": ""com.vrmc.univrm"",
@@ -54,7 +72,8 @@ namespace VRM
""name"": ""VRM Consortium""
}},
""dependencies"": {{
""com.vrmc.vrmshaders"": ""{0}.{1}.{2}""
""com.vrmc.vrmshaders"": ""{0}.{1}.{2}"",
""com.vrmc.meshutility"": ""{0}.{1}.{2}""
}}
}}
";
@@ -96,6 +115,10 @@ namespace VRM
values[0],
values[1],
values[2]), utf8);
File.WriteAllText(MeshUtilityPath, string.Format(MeshUtilityTemplate,
values[0],
values[1],
values[2]), utf8);
File.WriteAllText(VRMPackagePath, string.Format(VRMPackageTemplate,
values[0],
values[1],

View File

@@ -4,8 +4,8 @@ namespace VRM
public static partial class VRMVersion
{
public const int MAJOR = 0;
public const int MINOR = 58;
public const int PATCH = 1;
public const string VERSION = "0.58.1";
public const int MINOR = 59;
public const int PATCH = 0;
public const string VERSION = "0.59.0";
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "com.vrmc.univrm",
"version": "0.58.1",
"version": "0.59.0",
"displayName": "VRM",
"description": "VRM importer",
"unity": "2018.4",
@@ -14,7 +14,7 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.58.1",
"com.vrmc.meshutility": "0.58.1"
"com.vrmc.vrmshaders": "0.59.0",
"com.vrmc.meshutility": "0.59.0"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "com.vrmc.vrmshaders",
"version": "0.58.1",
"version": "0.59.0",
"displayName": "VRM Shaders",
"description": "VRM Shaders",
"unity": "2018.4",