Skip to content

Commit 1ad891d

Browse files
authored
Version update to 0.17.0.dev2 (a preview release was already done as dev1 from extract_adapters) (AcademySoftwareFoundation#1724)
Signed-off-by: Eric Reinecke <[email protected]>
1 parent 2b9c3a4 commit 1ad891d

File tree

5 files changed

+67
-3
lines changed

5 files changed

+67
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.18.2)
77
# TODO: read this information from a configuration file, here, and in setup.py
88

99
set(OTIO_VERSION_MAJOR "0")
10-
set(OTIO_VERSION_MINOR "16")
10+
set(OTIO_VERSION_MINOR "17")
1111
set(OTIO_VERSION_PATCH "0")
1212
set(OTIO_VERSION ${OTIO_VERSION_MAJOR}.${OTIO_VERSION_MINOR}.${OTIO_VERSION_PATCH})
1313

OTIO_VERSION.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": ["0", "16", "0"]}
1+
{"version": ["0", "17", "0"]}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def cmake_install(self):
218218

219219
# Metadata that gets stamped into the __init__ files during the build phase.
220220
PROJECT_METADATA = {
221-
"version": "0.16.0",
221+
"version": "0.17.0.dev2",
222222
"author": 'Contributors to the OpenTimelineIO project',
223223
"author_email": '[email protected]',
224224
"license": 'Apache 2.0 License',

src/opentimelineio/CORE_VERSION_MAP.cpp

+32
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
110110
{ "Transition", 1 },
111111
{ "UnknownSchema", 1 },
112112
} },
113+
{ "0.17.0.dev2",
114+
{
115+
{ "Adapter", 1 },
116+
{ "Clip", 2 },
117+
{ "Composable", 1 },
118+
{ "Composition", 1 },
119+
{ "Effect", 1 },
120+
{ "ExternalReference", 1 },
121+
{ "FreezeFrame", 1 },
122+
{ "Gap", 1 },
123+
{ "GeneratorReference", 1 },
124+
{ "HookScript", 1 },
125+
{ "ImageSequenceReference", 1 },
126+
{ "Item", 1 },
127+
{ "LinearTimeWarp", 1 },
128+
{ "Marker", 2 },
129+
{ "MediaLinker", 1 },
130+
{ "MediaReference", 1 },
131+
{ "MissingReference", 1 },
132+
{ "PluginManifest", 1 },
133+
{ "SchemaDef", 1 },
134+
{ "SerializableCollection", 1 },
135+
{ "SerializableObject", 1 },
136+
{ "SerializableObjectWithMetadata", 1 },
137+
{ "Stack", 1 },
138+
{ "Test", 1 },
139+
{ "TimeEffect", 1 },
140+
{ "Timeline", 1 },
141+
{ "Track", 1 },
142+
{ "Transition", 1 },
143+
{ "UnknownSchema", 1 },
144+
} },
113145
// {next}
114146
};
115147

src/opentimelineio/CORE_VERSION_MAP.last.cpp

+32
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
7878
{ "Transition", 1 },
7979
{ "UnknownSchema", 1 },
8080
} },
81+
{ "0.16.0",
82+
{
83+
{ "Adapter", 1 },
84+
{ "Clip", 2 },
85+
{ "Composable", 1 },
86+
{ "Composition", 1 },
87+
{ "Effect", 1 },
88+
{ "ExternalReference", 1 },
89+
{ "FreezeFrame", 1 },
90+
{ "Gap", 1 },
91+
{ "GeneratorReference", 1 },
92+
{ "HookScript", 1 },
93+
{ "ImageSequenceReference", 1 },
94+
{ "Item", 1 },
95+
{ "LinearTimeWarp", 1 },
96+
{ "Marker", 2 },
97+
{ "MediaLinker", 1 },
98+
{ "MediaReference", 1 },
99+
{ "MissingReference", 1 },
100+
{ "PluginManifest", 1 },
101+
{ "SchemaDef", 1 },
102+
{ "SerializableCollection", 1 },
103+
{ "SerializableObject", 1 },
104+
{ "SerializableObjectWithMetadata", 1 },
105+
{ "Stack", 1 },
106+
{ "Test", 1 },
107+
{ "TimeEffect", 1 },
108+
{ "Timeline", 1 },
109+
{ "Track", 1 },
110+
{ "Transition", 1 },
111+
{ "UnknownSchema", 1 },
112+
} },
81113
// {next}
82114
};
83115

0 commit comments

Comments
 (0)