diff --git a/CHANGELOG.md b/CHANGELOG.md index efd9cad..c1c5539 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index a138856..e008dc2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) # diff --git a/README.md b/README.md index c9cf866..6c7cac1 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/include/databento/publishers.hpp b/include/databento/publishers.hpp index 2fd0a57..7aa9c31 100644 --- a/include/databento/publishers.hpp +++ b/include/databento/publishers.hpp @@ -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, @@ -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, diff --git a/pkg/PKGBUILD b/pkg/PKGBUILD index 5bdf3e6..68175ed 100644 --- a/pkg/PKGBUILD +++ b/pkg/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Databento _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')