Skip to content

Commit 843806e

Browse files
authored
0.17.0 dev1 release preparation (#1670)
* Branch preparation for 0.17.0.dev1 release Signed-off-by: Eric Reinecke <[email protected]>
1 parent 16fdad9 commit 843806e

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/python-package.yml

Lines changed: 12 additions & 12 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.7
9-
GH_COV_OS: ubuntu-latest
9+
GH_COV_OS: ubuntu-22.04
1010
GH_DEPENDABOT: dependabot
1111

1212
on:
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
os: [ubuntu-latest, windows-latest, macos-latest]
27+
os: [ubuntu-22.04, windows-2022, macos-12]
2828
# Unfortunately the CMake test target is OS dependent so we set it as
2929
# a variable here.
3030
include:
31-
- os: ubuntu-latest
31+
- os: ubuntu-22.04
3232
OTIO_TEST_TARGET: test
33-
- os: windows-latest
33+
- os: windows-2022
3434
OTIO_TEST_TARGET: RUN_TESTS
35-
- os: macos-latest
35+
- os: macos-12
3636
OTIO_TEST_TARGET: test
3737

3838
env:
@@ -92,13 +92,13 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
strategy:
9494
matrix:
95-
os: [ubuntu-latest, windows-latest, macos-latest]
95+
os: [ubuntu-22.04, windows-2022, macos-12]
9696
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
9797
include:
98-
- { os: ubuntu-latest, shell: bash }
99-
- { os: macos-latest, shell: bash }
100-
- { os: windows-latest, shell: pwsh }
101-
- { os: windows-latest, shell: msys2, python-version: 'mingw64' }
98+
- { os: ubuntu-22.04, shell: bash }
99+
- { os: macos-12, shell: bash }
100+
- { os: windows-2022, shell: pwsh }
101+
- { os: windows-2022, shell: msys2, python-version: 'mingw64' }
102102

103103
defaults:
104104
run:
@@ -162,7 +162,7 @@ jobs:
162162
runs-on: ${{ matrix.os }}
163163
strategy:
164164
matrix:
165-
os: [ubuntu-latest, windows-latest, macos-latest]
165+
os: [ubuntu-22.04, windows-2022, macos-12]
166166
python-build: ['cp37*', 'cp38*', 'cp39*', 'cp310*', 'cp311*']
167167
steps:
168168
- uses: actions/checkout@v3
@@ -184,7 +184,7 @@ jobs:
184184

185185
package_sdist:
186186
needs: py_build_test
187-
runs-on: ubuntu-latest
187+
runs-on: ubuntu-22.04
188188
steps:
189189
- uses: actions/checkout@v3
190190
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 "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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": ["0", "16", "0"]}
1+
{"version": ["0", "17", "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.16.0.dev1",
221+
"version": "0.17.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const label_to_schema_version_map CORE_VERSION_MAP{
7878
{ "Transition", 1 },
7979
{ "UnknownSchema", 1 },
8080
} },
81-
{ "0.16.0.dev1",
81+
{ "0.17.0.dev1",
8282
{
8383
{ "Adapter", 1 },
8484
{ "Clip", 2 },

0 commit comments

Comments
 (0)