Skip to content

Commit c416233

Browse files
committed
bump version info to 2.10.0-alpha.1
1 parent a8f4500 commit c416233

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

__init__.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,15 @@
2828
"blender": (4, 2, 0),
2929
"category": "Render",
3030
"description": "LuxCoreRender integration for Blender",
31-
"warning": "alpha1",
31+
"warning": "alpha.1",
3232

3333
"wiki_url": "https://wiki.luxcorerender.org/",
3434
"tracker_url": "https://github.com/LuxCoreRender/BlendLuxCore/issues/new",
3535
}
36-
version_string = f'{bl_info["version"][0]}.{bl_info["version"][1]}{bl_info["warning"]}'
36+
37+
version_string = f'{bl_info["version"][0]}.{bl_info["version"][1]}.{bl_info["version"][2]}'
38+
if 'warning' in bl_info:
39+
version_string = version_string + f'-{bl_info["warning"]}'
3740

3841
PYLUXCORE_VERSION = '2.10.0a1' # specifies the version of pyluxcore that corresponds to this version of BlendLuxCore
3942

@@ -283,7 +286,7 @@ def register():
283286
nodes.register()
284287

285288
pyluxcore.Init(LuxCoreLog.add)
286-
print(f"BlendLuxCore (wheels) {version_string} registered (with pyluxcore {pyluxcore.Version()})")
289+
print(f"BlendLuxCore {version_string} registered (with pyluxcore {pyluxcore.Version()})")
287290

288291
def unregister():
289292
engine.unregister()

blender_manifest.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ schema_version = "1.0.0"
33
# Example of manifest file for a Blender extension
44
# Change the values according to your extension
55
id = "BlendLuxCore"
6-
# Recommend versioning like MASTER.MAJOR.MINOR.
7-
# E.g.: "2.9.4": master: 2; major: 9; minor: 3.
8-
# BlendLuxCore Wheels version is 2.9.4 "4 is alpha4 here"
9-
version = "2.9.4"
6+
# Versioning should follow the semver standard: https://semver.org/
7+
# I.e. MAJOR.MINOR.PATCH
8+
# E.g.: "2.9.4": major: 2; minor: 9; patch: 3.
9+
# or for pre-release versions: "2.9.4-alpha.1": major: 2; minor: 9; patch: 3; pre-release: alpha.1
10+
version = "2.10.0-alpha.1"
1011
name = "BlendLuxCore"
1112
tagline = "LuxCore"
1213
maintainer = "BlendLuxCore team"

0 commit comments

Comments
 (0)