Skip to content

Commit 389e520

Browse files
committed
VER: Release databento-cpp 0.5.0
1 parent 66db191 commit 389e520

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,6 +1,6 @@
11
# Changelog
22

3-
## 0.5.0 - TBD
3+
## 0.5.0 - 2023-03-13
44
- Added `Historical::MetadataGetDatasetRange`
55
- Changed `MetadataGetDatasetCondition` to return `vector<DatasetConditionDetail>`
66
- Removed `MetadataListCompressions` (redundant with docs)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.14)
44
# Project details
55
#
66

7-
project("databento" VERSION 0.4.0 LANGUAGES CXX)
7+
project("databento" VERSION 0.5.0 LANGUAGES CXX)
88
string(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPERCASE)
99

1010
#

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ cmake --install build
8080

8181
Then in your project's `CMakeLists.txt`, add the following:
8282
```cmake
83-
find_package(databento 0.4.0 REQUIRED)
83+
find_package(databento 0.5.0 REQUIRED)
8484
add_library(my_library)
8585
target_link_libraries(my_library PRIVATE databento::databento)
8686
```

pkg/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Databento <[email protected]>
22
_pkgname=databento-cpp
33
pkgname=databento-cpp-git
4-
pkgver=0.4.0
4+
pkgver=0.5.0
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
@@ -491,8 +491,7 @@ std::vector<databento::Schema> Historical::MetadataListSchemas(
491491
const std::string& dataset) {
492492
static const std::string kEndpoint = "Historical::MetadataListSchemas";
493493
static const std::string kPath = ::BuildMetadataPath(".list_schemas");
494-
httplib::Params params{{"dataset", dataset}};
495-
const nlohmann::json json = client_.GetJson(kPath, params);
494+
const nlohmann::json json = client_.GetJson(kPath, {{"dataset", dataset}});
496495
if (!json.is_array()) {
497496
throw JsonResponseError::TypeMismatch(kEndpoint, "array", json);
498497
}

0 commit comments

Comments
 (0)