File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ### 0.55.0 - TBD
3+ ## 0.55.0 - TBD
44
5- ##### Enhancements
5+ ### Enhancements
66- Added new publisher values for Cboe Titanium Cboe Global Indices Feed
7+ - Added ` Year ` to ` SplitDuration ` enum for yearly historical batch job submissions
78
89## 0.54.0 - 2026-04-21
910
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ enum class SplitDuration : std::uint8_t {
2424 Day = 0 ,
2525 Week,
2626 Month,
27+ Year,
2728 None,
2829};
2930
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ const char* ToString(SplitDuration duration_interval) {
4848 case SplitDuration::Month: {
4949 return " month" ;
5050 }
51+ case SplitDuration::Year: {
52+ return " year" ;
53+ }
5154 case SplitDuration::None: {
5255 return " none" ;
5356 }
@@ -979,6 +982,9 @@ SplitDuration FromString(const std::string& str) {
979982 if (str == " month" ) {
980983 return SplitDuration::Month;
981984 }
985+ if (str == " year" ) {
986+ return SplitDuration::Year;
987+ }
982988 if (str == " none" ) {
983989 return SplitDuration::None;
984990 }
You can’t perform that action at this time.
0 commit comments