Commit 98ce544 1 parent c89b5c8 commit 98ce544 Copy full SHA for 98ce544
File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 8
8
- Added ` Subscriptions() ` getter methods to ` LiveBlocking ` and ` LiveThreaded ` for
9
9
getting all active subscriptions
10
10
11
+ ### Breaking changes
12
+ - Added ` CommoditySpot ` ` InstrumentClass ` variant
13
+
11
14
## 0.29.0 - 2025-02-04
12
15
13
16
### Enhancements
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ enum InstrumentClass : char {
191
191
FutureSpread = ' S' ,
192
192
OptionSpread = ' T' ,
193
193
FxSpot = ' X' ,
194
+ CommoditySpot = ' Y' ,
194
195
};
195
196
} // namespace instrument_class
196
197
using instrument_class::InstrumentClass;
Original file line number Diff line number Diff line change @@ -392,6 +392,9 @@ const char* ToString(InstrumentClass instrument_class) {
392
392
case instrument_class::FxSpot: {
393
393
return " FxSpot" ;
394
394
}
395
+ case instrument_class::CommoditySpot: {
396
+ return " CommoditySpot" ;
397
+ }
395
398
default : {
396
399
return " Unknown" ;
397
400
}
You can’t perform that action at this time.
0 commit comments