Skip to content

Commit 93e53b7

Browse files
committed
VER: Release 0.38.1
1 parent 6cd9ad9 commit 93e53b7

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24..4.0)
66

77
project(
88
databento
9-
VERSION 0.38.0
9+
VERSION 0.38.1
1010
LANGUAGES CXX
1111
DESCRIPTION "Official Databento client library"
1212
)

include/databento/metadata.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct DatasetConditionDetail {
3737
struct 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

4343
inline bool operator==(const PublisherDetail& lhs, const PublisherDetail& rhs) {

pkg/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Databento <support@databento.com>
22
_pkgname=databento-cpp
33
pkgname=databento-cpp-git
4-
pkgver=0.38.0
4+
pkgver=0.38.1
55
pkgrel=1
66
pkgdesc="Official C++ client for Databento"
77
arch=('any')

src/historical.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
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",

0 commit comments

Comments
 (0)