File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 88- Added ` Subscriptions() ` getter methods to ` LiveBlocking ` and ` LiveThreaded ` for
99 getting all active subscriptions
1010
11+ ### Breaking changes
12+ - Added ` CommoditySpot ` ` InstrumentClass ` variant
13+
1114## 0.29.0 - 2025-02-04
1215
1316### Enhancements
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ enum InstrumentClass : char {
191191 FutureSpread = ' S' ,
192192 OptionSpread = ' T' ,
193193 FxSpot = ' X' ,
194+ CommoditySpot = ' Y' ,
194195};
195196} // namespace instrument_class
196197using instrument_class::InstrumentClass;
Original file line number Diff line number Diff line change @@ -392,6 +392,9 @@ const char* ToString(InstrumentClass instrument_class) {
392392 case instrument_class::FxSpot: {
393393 return " FxSpot" ;
394394 }
395+ case instrument_class::CommoditySpot: {
396+ return " CommoditySpot" ;
397+ }
395398 default : {
396399 return " Unknown" ;
397400 }
You can’t perform that action at this time.
0 commit comments