File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed
Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33
4- ## 0.38.1 - TBD
4+ ## 0.38.1 - 2025-06-25
55
66### Enhancements
77- Added ` range_by_schema ` field to ` DatasetRange ` struct
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24..4.0)
66
77project (
88 databento
9- VERSION 0.38.0
9+ VERSION 0.38.1
1010 LANGUAGES CXX
1111 DESCRIPTION "Official Databento client library"
1212)
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ struct DatasetConditionDetail {
3737struct DatasetRange {
3838 std::string start;
3939 std::string end;
40- std::unordered_map <Schema, DateTimeRange<std::string>> range_by_schema;
40+ std::map <Schema, DateTimeRange<std::string>> range_by_schema;
4141};
4242
4343inline bool operator ==(const PublisherDetail& lhs, const PublisherDetail& rhs) {
Original file line number Diff line number Diff line change 11# Maintainer: Databento <support@databento.com>
22_pkgname=databento-cpp
33pkgname=databento-cpp-git
4- pkgver=0.38.0
4+ pkgver=0.38.1
55pkgrel=1
66pkgdesc=" Official C++ client for Databento"
77arch=(' any' )
Original file line number Diff line number Diff line change 1414#include < sstream>
1515#include < string>
1616#include < system_error>
17- #include < unordered_map>
1817#include < utility> // move
1918
2019#include " databento/constants.hpp"
@@ -537,7 +536,7 @@ databento::DatasetRange Historical::MetadataGetDatasetRange(
537536 if (!schema_json.is_object ()) {
538537 throw JsonResponseError::TypeMismatch (kEndpoint , " schema object" , json);
539538 }
540- std::unordered_map <Schema, DateTimeRange<std::string>> range_by_schema;
539+ std::map <Schema, DateTimeRange<std::string>> range_by_schema;
541540 for (const auto & schema_item : schema_json.items ()) {
542541 if (!schema_item.value ().is_object ()) {
543542 throw JsonResponseError::TypeMismatch (kEndpoint , " nested schema object" ,
You can’t perform that action at this time.
0 commit comments