Skip to content

Commit 530d4c1

Browse files
committed
Use *v3.0.0* for package and colorspaces version
Signed-off-by: Thomas Mansencal <[email protected]>
1 parent b8b0b2e commit 530d4c1

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

opencolorio_config_aces/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133

134134
__application_name__ = "OpenColorIO Configuration for ACES"
135135

136-
__major_version__ = "2"
137-
__minor_version__ = "4"
138-
__version__ = f"{__major_version__}.{__minor_version__}"
136+
__major_version__ = "3"
137+
__minor_version__ = "0"
138+
__patch_version__ = "0"
139+
__version__ = f"{__major_version__}.{__minor_version__}.{__patch_version__}"

opencolorio_config_aces/config/generation/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,19 +87,19 @@ def extended_fields(self):
8787
BUILD_CONFIGURATIONS = [
8888
BuildConfiguration(
8989
aces=Version(2, 0),
90-
colorspaces=Version(2, 3, 0),
90+
colorspaces=Version(3, 0, 0),
9191
ocio=Version(2, 4),
9292
variant="",
9393
),
9494
BuildConfiguration(
9595
aces=Version(2, 0),
96-
colorspaces=Version(2, 3, 0),
96+
colorspaces=Version(3, 0, 0),
9797
ocio=Version(2, 4),
9898
variant="D60 Views",
9999
),
100100
BuildConfiguration(
101101
aces=Version(2, 0),
102-
colorspaces=Version(2, 3, 0),
102+
colorspaces=Version(3, 0, 0),
103103
ocio=Version(2, 4),
104104
variant="All Views",
105105
),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[project]
55
name = "opencolorio-config-aces"
6-
version = "2.4"
6+
version = "3.0.0"
77
description = "OpenColorIO Configuration for ACES"
88
readme = "README.rst"
99
requires-python = ">=3.10,<3.14"

0 commit comments

Comments
 (0)