Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.18.2)
# TODO: read this information from a configuration file, here, and in setup.py

set(OTIO_VERSION_MAJOR "0")
set(OTIO_VERSION_MINOR "16")
set(OTIO_VERSION_MINOR "17")
set(OTIO_VERSION_PATCH "0")
set(OTIO_VERSION ${OTIO_VERSION_MAJOR}.${OTIO_VERSION_MINOR}.${OTIO_VERSION_PATCH})

Expand Down
2 changes: 1 addition & 1 deletion OTIO_VERSION.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": ["0", "16", "0"]}
{"version": ["0", "17", "0"]}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def cmake_install(self):

# Metadata that gets stamped into the __init__ files during the build phase.
PROJECT_METADATA = {
"version": "0.16.0",
"version": "0.17.0.dev2",
"author": 'Contributors to the OpenTimelineIO project',
"author_email": '[email protected]',
"license": 'Apache 2.0 License',
Expand Down
32 changes: 32 additions & 0 deletions src/opentimelineio/CORE_VERSION_MAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
{ "Transition", 1 },
{ "UnknownSchema", 1 },
} },
{ "0.17.0.dev2",
{
{ "Adapter", 1 },
{ "Clip", 2 },
{ "Composable", 1 },
{ "Composition", 1 },
{ "Effect", 1 },
{ "ExternalReference", 1 },
{ "FreezeFrame", 1 },
{ "Gap", 1 },
{ "GeneratorReference", 1 },
{ "HookScript", 1 },
{ "ImageSequenceReference", 1 },
{ "Item", 1 },
{ "LinearTimeWarp", 1 },
{ "Marker", 2 },
{ "MediaLinker", 1 },
{ "MediaReference", 1 },
{ "MissingReference", 1 },
{ "PluginManifest", 1 },
{ "SchemaDef", 1 },
{ "SerializableCollection", 1 },
{ "SerializableObject", 1 },
{ "SerializableObjectWithMetadata", 1 },
{ "Stack", 1 },
{ "Test", 1 },
{ "TimeEffect", 1 },
{ "Timeline", 1 },
{ "Track", 1 },
{ "Transition", 1 },
{ "UnknownSchema", 1 },
} },
// {next}
};

Expand Down
32 changes: 32 additions & 0 deletions src/opentimelineio/CORE_VERSION_MAP.last.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
{ "Transition", 1 },
{ "UnknownSchema", 1 },
} },
{ "0.16.0",
{
{ "Adapter", 1 },
{ "Clip", 2 },
{ "Composable", 1 },
{ "Composition", 1 },
{ "Effect", 1 },
{ "ExternalReference", 1 },
{ "FreezeFrame", 1 },
{ "Gap", 1 },
{ "GeneratorReference", 1 },
{ "HookScript", 1 },
{ "ImageSequenceReference", 1 },
{ "Item", 1 },
{ "LinearTimeWarp", 1 },
{ "Marker", 2 },
{ "MediaLinker", 1 },
{ "MediaReference", 1 },
{ "MissingReference", 1 },
{ "PluginManifest", 1 },
{ "SchemaDef", 1 },
{ "SerializableCollection", 1 },
{ "SerializableObject", 1 },
{ "SerializableObjectWithMetadata", 1 },
{ "Stack", 1 },
{ "Test", 1 },
{ "TimeEffect", 1 },
{ "Timeline", 1 },
{ "Track", 1 },
{ "Transition", 1 },
{ "UnknownSchema", 1 },
} },
// {next}
};

Expand Down