Skip to content

Commit

Permalink
Reverted version bump for schema and core
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Schleich <[email protected]>
  • Loading branch information
fschleich committed Sep 30, 2024
1 parent 334bf4c commit c2ab22f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/otio-serialized-schema-only-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ parameters:
- *name*
- *source_range*

### Effect.2
### Effect.1

parameters:
- *effect_name*
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/otio-serialized-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ parameters:
- *name*:
- *source_range*:

### Effect.2
### Effect.1

*full module path*: `opentimelineio.schema.Effect`

Expand Down
4 changes: 2 additions & 2 deletions src/opentimelineio/CORE_VERSION_MAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ const label_to_schema_version_map CORE_VERSION_MAP{
{ "Transition", 1 },
{ "UnknownSchema", 1 },
} },
{ "0.18.0",
{ "0.18.0.dev1",
{
{ "Adapter", 1 },
{ "Clip", 2 },
{ "Composable", 1 },
{ "Composition", 1 },
{ "Effect", 2 },
{ "Effect", 1 },
{ "ExternalReference", 1 },
{ "FreezeFrame", 1 },
{ "Gap", 1 },
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/effect.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Effect : public SerializableObjectWithMetadata
struct Schema
{
static auto constexpr name = "Effect";
static int constexpr version = 2;
static int constexpr version = 1;
};

using Parent = SerializableObjectWithMetadata;
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/empty_effect.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"OTIO_SCHEMA" : "Effect.2",
"OTIO_SCHEMA" : "Effect.1",
"name" : "",
"effect_name" : "",
"metadata" : {},
Expand Down

0 comments on commit c2ab22f

Please sign in to comment.