Skip to content

Commit 4aa34cc

Browse files
committed
VER: Release databento-cpp 0.16.0
1 parent 3405de7 commit 4aa34cc

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changelog
22

3-
## 0.16.0 - TBD
3+
## 0.16.0 - 2024-03-01
44

55
### Enhancements
66
- Added new publisher values for consolidated DBEQ.MAX
77
- Added constructor to `WithTsOut` that updates `length` to the correct value to account
88
for the extra 8 bytes
9+
- Upgrade default cpp-httplib version to 0.14.3 (last to still support OpenSSL 1.1)
10+
- Upgrade default nlohmann_json version to 3.11.3
911

1012
### Breaking changes
1113
- Changed default `upgrade_policy` to `Upgrade` so by default the primary record types

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
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.15.0 LANGUAGES CXX)
7+
project("databento" VERSION 0.16.0 LANGUAGES CXX)
88
string(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPERCASE)
99

1010
#
@@ -121,7 +121,7 @@ include(FetchContent)
121121
if(${PROJECT_NAME_UPPERCASE}_USE_EXTERNAL_JSON)
122122
find_package(nlohmann_json REQUIRED)
123123
else()
124-
set(json_version 3.11.2)
124+
set(json_version 3.11.3)
125125
# Required to correctly install nlohmann_json
126126
set(JSON_Install ON)
127127
if(CMAKE_VERSION VERSION_LESS 3.24)
@@ -145,7 +145,7 @@ endif()
145145
if(${PROJECT_NAME_UPPERCASE}_USE_EXTERNAL_HTTPLIB)
146146
find_package(httplib REQUIRED)
147147
else()
148-
set(httplib_version 0.13.1)
148+
set(httplib_version 0.14.3)
149149
if(CMAKE_VERSION VERSION_LESS 3.24)
150150
FetchContent_Declare(
151151
httplib

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.15.0
4+
pkgver=0.16.0
55
pkgrel=1
66
pkgdesc="Official C++ client for Databento"
77
arch=('any')

0 commit comments

Comments
 (0)