Skip to content

Commit ad80efc

Browse files
committed
Initializing 0.19.0
1 parent 209d723 commit ad80efc

File tree

6 files changed

+84
-20
lines changed

6 files changed

+84
-20
lines changed

.github/workflows/python-package.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: OpenTimelineIO
66
# for configuring which build will be a C++ coverage build / coverage report
77
env:
88
GH_COV_PY: "3.10"
9-
GH_COV_OS: ubuntu-24.04
9+
GH_COV_OS: ubuntu-latest
1010
GH_DEPENDABOT: dependabot
1111

1212
on:
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
os: [ubuntu-24.04, windows-2025, macos-14, macos-15]
27+
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
2828
# Unfortunately the CMake test target is OS dependent so we set it as
2929
# a variable here.
3030
include:
31-
- os: ubuntu-24.04
31+
- os: ubuntu-latest
3232
OTIO_TEST_TARGET: test
33-
- os: windows-2025
33+
- os: windows-latest
3434
OTIO_TEST_TARGET: RUN_TESTS
35-
- os: macos-15
35+
- os: macos-latest
3636
OTIO_TEST_TARGET: test
3737
- os: macos-14
3838
OTIO_TEST_TARGET: test
@@ -92,16 +92,16 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
strategy:
9494
matrix:
95-
os: [ubuntu-24.04, windows-2025, macos-14, macos-15]
95+
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
9696
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
9797
include:
98-
- { os: ubuntu-24.04, shell: bash }
99-
- { os: macos-15, shell: bash }
98+
- { os: ubuntu-latest, shell: bash }
99+
- { os: macos-latest, shell: bash }
100100
- { os: macos-14, shell: bash }
101-
- { os: windows-2025, shell: pwsh }
102-
- { os: windows-2025, shell: msys2, python-version: "mingw64" }
101+
- { os: windows-latest, shell: pwsh }
102+
- { os: windows-latest, shell: msys2, python-version: "mingw64" }
103103
exclude:
104-
- { os: macos-15, python-version: 3.9 }
104+
- { os: macos-latest, python-version: 3.9 }
105105

106106
defaults:
107107
run:
@@ -173,16 +173,16 @@ jobs:
173173
matrix:
174174
os:
175175
[
176-
ubuntu-24.04,
177-
ubuntu-24.04-arm,
178-
windows-2025,
176+
ubuntu-latest,
177+
ubuntu-latest-arm,
178+
windows-latest,
179179
macos-14,
180-
macos-15,
180+
macos-latest,
181181
]
182182
python-build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
183183
#exclude:
184184
# none currently
185-
# - { os: macos-15, python-build: 'cp37' }
185+
# - { os: macos-latest, python-build: 'cp37' }
186186
steps:
187187
- uses: actions/checkout@v4
188188

@@ -205,7 +205,7 @@ jobs:
205205

206206
package_sdist:
207207
needs: py_build_test
208-
runs-on: ubuntu-24.04
208+
runs-on: ubuntu-latest
209209
steps:
210210
- uses: actions/checkout@v4
211211
with:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 "18")
10+
set(OTIO_VERSION_MINOR "19")
1111
set(OTIO_VERSION_PATCH "0")
1212
set(OTIO_VERSION ${OTIO_VERSION_MAJOR}.${OTIO_VERSION_MINOR}.${OTIO_VERSION_PATCH})
1313

OTIO_VERSION.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": ["0", "18", "0"]}
1+
{"version": ["0", "19", "0"]}

setup.py

Lines changed: 1 addition & 1 deletion
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.18.0",
221+
"version": "0.19.0.dev1",
222222
"author": 'Contributors to the OpenTimelineIO project',
223223
"author_email": '[email protected]',
224224
"license": 'Apache 2.0 License',

src/opentimelineio/CORE_VERSION_MAP.cpp

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
174174
{ "Transition", 1 },
175175
{ "UnknownSchema", 1 },
176176
} },
177+
{ "0.19.0.dev1",
178+
{
179+
{ "Adapter", 1 },
180+
{ "Clip", 2 },
181+
{ "Composable", 1 },
182+
{ "Composition", 1 },
183+
{ "Effect", 1 },
184+
{ "ExternalReference", 1 },
185+
{ "FreezeFrame", 1 },
186+
{ "Gap", 1 },
187+
{ "GeneratorReference", 1 },
188+
{ "HookScript", 1 },
189+
{ "ImageSequenceReference", 1 },
190+
{ "Item", 1 },
191+
{ "LinearTimeWarp", 1 },
192+
{ "Marker", 2 },
193+
{ "MediaLinker", 1 },
194+
{ "MediaReference", 1 },
195+
{ "MissingReference", 1 },
196+
{ "PluginManifest", 1 },
197+
{ "SchemaDef", 1 },
198+
{ "SerializableCollection", 1 },
199+
{ "SerializableObject", 1 },
200+
{ "SerializableObjectWithMetadata", 1 },
201+
{ "Stack", 1 },
202+
{ "Test", 1 },
203+
{ "TimeEffect", 1 },
204+
{ "Timeline", 1 },
205+
{ "Track", 1 },
206+
{ "Transition", 1 },
207+
{ "UnknownSchema", 1 },
208+
} },
177209
// {next}
178210
};
179211

src/opentimelineio/CORE_VERSION_MAP.last.cpp

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,38 @@ const label_to_schema_version_map CORE_VERSION_MAP{
142142
{ "Transition", 1 },
143143
{ "UnknownSchema", 1 },
144144
} },
145+
{ "0.18.0",
146+
{
147+
{ "Adapter", 1 },
148+
{ "Clip", 2 },
149+
{ "Composable", 1 },
150+
{ "Composition", 1 },
151+
{ "Effect", 1 },
152+
{ "ExternalReference", 1 },
153+
{ "FreezeFrame", 1 },
154+
{ "Gap", 1 },
155+
{ "GeneratorReference", 1 },
156+
{ "HookScript", 1 },
157+
{ "ImageSequenceReference", 1 },
158+
{ "Item", 1 },
159+
{ "LinearTimeWarp", 1 },
160+
{ "Marker", 2 },
161+
{ "MediaLinker", 1 },
162+
{ "MediaReference", 1 },
163+
{ "MissingReference", 1 },
164+
{ "PluginManifest", 1 },
165+
{ "SchemaDef", 1 },
166+
{ "SerializableCollection", 1 },
167+
{ "SerializableObject", 1 },
168+
{ "SerializableObjectWithMetadata", 1 },
169+
{ "Stack", 1 },
170+
{ "Test", 1 },
171+
{ "TimeEffect", 1 },
172+
{ "Timeline", 1 },
173+
{ "Track", 1 },
174+
{ "Transition", 1 },
175+
{ "UnknownSchema", 1 },
176+
} },
145177
// {next}
146178
};
147179

0 commit comments

Comments
 (0)