File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 81
81
path : ./openassetio-mediacreation-build
82
82
83
83
- name : " Get Submodules"
84
- run : git submodule update --init --recursive OpenAssetIO
84
+ run : git submodule update --init --recursive --remote OpenAssetIO
85
85
86
86
- name : Configure CMake build
87
87
run : >
@@ -118,7 +118,7 @@ jobs:
118
118
python -m pip install git+https://github.com/OpenAssetIO/OpenAssetIO-TraitGen
119
119
120
120
- name : " Get Submodules"
121
- run : git submodule update --init --recursive OpenAssetIO-MediaCreation
121
+ run : git submodule update --init --recursive --remote OpenAssetIO-MediaCreation
122
122
123
123
- name : Configure CMake build
124
124
run : >
@@ -146,7 +146,7 @@ jobs:
146
146
python -m pip install git+https://github.com/OpenAssetIO/OpenAssetIO-TraitGen
147
147
148
148
- name : " Get Submodules"
149
- run : git submodule update --init --recursive
149
+ run : git submodule update --init --recursive --remote
150
150
151
151
- name : Configure CMake build
152
152
run : >
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Release Notes
4
4
v1.0.0-alpha.x
5
5
--------------
6
6
7
+ ### Breaking Changes
8
+
9
+ * Update to use non-deprecated ` TraitsData ` path/namespace.
10
+ [ #13 ] ( https://github.com/OpenAssetIO/OpenAssetIO-Test-CMake/pull/13 )
11
+
7
12
### New Features
8
13
9
14
* OpenAssetIO-MediaCreation integrated as a dependency, with tests.
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: Apache-2.0
2
2
// Copyright 2022 The Foundry Visionmongers Ltd
3
3
4
- #include < openassetio/TraitsData.hpp>
4
+ #include < openassetio/trait/ TraitsData.hpp>
5
5
6
6
int main () {
7
- auto traits = openassetio::TraitsData::make ();
7
+ auto traits = openassetio::trait:: TraitsData::make ();
8
8
traits->setTraitProperty (" a" , " b" , openassetio::Str{" c" });
9
9
}
You can’t perform that action at this time.
0 commit comments