Skip to content

Commit 5d84bc3

Browse files
authored
VER: Release 0.32.0
2 parents 86e3e6b + 304514b commit 5d84bc3

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.32.0 - 2025-03-25
4+
5+
### Enhancements
6+
- Upgraded default date version to 3.0.3
7+
8+
### Breaking changes
9+
- Upgraded default cpp-httplib version to 0.20.0 which requires OpenSSL >= 3.0
10+
311
## 0.31.0 - 2025-03-18
412

513
### Enhancements
@@ -261,8 +269,8 @@ for date fields were changed from strings or ints to `date::year_month_day`.
261269
- Added new publisher values for consolidated DBEQ.MAX
262270
- Added constructor to `WithTsOut` that updates `length` to the correct value to account
263271
for the extra 8 bytes
264-
- Upgrade default cpp-httplib version to 0.14.3 (last to still support OpenSSL 1.1)
265-
- Upgrade default nlohmann_json version to 3.11.3
272+
- Upgraded default cpp-httplib version to 0.14.3 (last to still support OpenSSL 1.1)
273+
- Upgraded default nlohmann_json version to 3.11.3
266274

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

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.31.0 LANGUAGES CXX)
7+
project("databento" VERSION 0.32.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
@@ -59,7 +59,7 @@ target_link_libraries(example PRIVATE databento::databento)
5959
### Dependencies
6060

6161
You'll need to ensure the following dependencies are installed:
62-
- [OpenSSL](https://www.openssl.org/)
62+
- [OpenSSL](https://www.openssl.org/) (minimum version 3.0)
6363
- [Libcrypto](https://www.openssl.org/docs/man3.0/man7/crypto.html)
6464
- [Zstandard (zstd)](https://github.com/facebook/zstd)
6565
- [nlohmann\_json (header-only)](https://github.com/nlohmann/json)

include/databento/publishers.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,13 @@ enum class Dataset : std::uint16_t {
121121
XbosItch = 3,
122122
// Nasdaq PSX TotalView-ITCH
123123
XpsxItch = 4,
124-
// Cboe BZX Depth Pitch
124+
// Cboe BZX Depth
125125
BatsPitch = 5,
126-
// Cboe BYX Depth Pitch
126+
// Cboe BYX Depth
127127
BatyPitch = 6,
128-
// Cboe EDGA Depth Pitch
128+
// Cboe EDGA Depth
129129
EdgaPitch = 7,
130-
// Cboe EDGX Depth Pitch
130+
// Cboe EDGX Depth
131131
EdgxPitch = 8,
132132
// NYSE Integrated
133133
XnysPillar = 9,
@@ -203,13 +203,13 @@ enum class Publisher : std::uint16_t {
203203
XbosItchXbos = 3,
204204
// Nasdaq PSX TotalView-ITCH
205205
XpsxItchXpsx = 4,
206-
// Cboe BZX Depth Pitch
206+
// Cboe BZX Depth
207207
BatsPitchBats = 5,
208-
// Cboe BYX Depth Pitch
208+
// Cboe BYX Depth
209209
BatyPitchBaty = 6,
210-
// Cboe EDGA Depth Pitch
210+
// Cboe EDGA Depth
211211
EdgaPitchEdga = 7,
212-
// Cboe EDGX Depth Pitch
212+
// Cboe EDGX Depth
213213
EdgxPitchEdgx = 8,
214214
// NYSE Integrated
215215
XnysPillarXnys = 9,

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

0 commit comments

Comments
 (0)