Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.32.0 - 2025-03-25

### Enhancements
- Upgraded default date version to 3.0.3

### Breaking changes
- Upgraded default cpp-httplib version to 0.20.0 which requires OpenSSL >= 3.0

## 0.31.0 - 2025-03-18

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

### Breaking changes
- Changed default `upgrade_policy` to `Upgrade` so by default the primary record types
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.14)
# Project details
#

project("databento" VERSION 0.31.0 LANGUAGES CXX)
project("databento" VERSION 0.32.0 LANGUAGES CXX)
string(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPERCASE)

#
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ target_link_libraries(example PRIVATE databento::databento)
### Dependencies

You'll need to ensure the following dependencies are installed:
- [OpenSSL](https://www.openssl.org/)
- [OpenSSL](https://www.openssl.org/) (minimum version 3.0)
- [Libcrypto](https://www.openssl.org/docs/man3.0/man7/crypto.html)
- [Zstandard (zstd)](https://github.com/facebook/zstd)
- [nlohmann\_json (header-only)](https://github.com/nlohmann/json)
Expand Down
16 changes: 8 additions & 8 deletions include/databento/publishers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ enum class Dataset : std::uint16_t {
XbosItch = 3,
// Nasdaq PSX TotalView-ITCH
XpsxItch = 4,
// Cboe BZX Depth Pitch
// Cboe BZX Depth
BatsPitch = 5,
// Cboe BYX Depth Pitch
// Cboe BYX Depth
BatyPitch = 6,
// Cboe EDGA Depth Pitch
// Cboe EDGA Depth
EdgaPitch = 7,
// Cboe EDGX Depth Pitch
// Cboe EDGX Depth
EdgxPitch = 8,
// NYSE Integrated
XnysPillar = 9,
Expand Down Expand Up @@ -203,13 +203,13 @@ enum class Publisher : std::uint16_t {
XbosItchXbos = 3,
// Nasdaq PSX TotalView-ITCH
XpsxItchXpsx = 4,
// Cboe BZX Depth Pitch
// Cboe BZX Depth
BatsPitchBats = 5,
// Cboe BYX Depth Pitch
// Cboe BYX Depth
BatyPitchBaty = 6,
// Cboe EDGA Depth Pitch
// Cboe EDGA Depth
EdgaPitchEdga = 7,
// Cboe EDGX Depth Pitch
// Cboe EDGX Depth
EdgxPitchEdgx = 8,
// NYSE Integrated
XnysPillarXnys = 9,
Expand Down
2 changes: 1 addition & 1 deletion pkg/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Databento <support@databento.com>
_pkgname=databento-cpp
pkgname=databento-cpp-git
pkgver=0.31.0
pkgver=0.32.0
pkgrel=1
pkgdesc="Official C++ client for Databento"
arch=('any')
Expand Down
Loading