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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.35.1 - 2025-05-20

### Bug fixes
- Added missing `operator<<` and `ToString` implementations for `Cmbp1Msg`

## 0.35.0 - 2025-05-13

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24..4.0)

project(
databento
VERSION 0.35.0
VERSION 0.35.1
LANGUAGES CXX
DESCRIPTION "Official Databento client library"
)
Expand Down
4 changes: 2 additions & 2 deletions include/databento/enums.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ enum StatusReason : std::uint16_t {
// The news has been fully disseminated and times are available for the
// resumption in quoting and trading.
NewsAndResumptionTimes = 32,
// The relevants news was not forthcoming.
// The relevant news was not forthcoming.
NewsNotForthcoming = 33,
// Halted for order imbalance.
OrderImbalance = 40,
Expand Down Expand Up @@ -414,7 +414,7 @@ enum StatusReason : std::uint16_t {
// Halted due to the carryover of a market-wide circuit breaker from the
// previous trading day.
MarketWideHaltCarryover = 123,
// Resumption due to the end of the a market-wide circuit breaker halt.
// Resumption due to the end of a market-wide circuit breaker halt.
MarketWideHaltResumption = 124,
// Halted because quotation is not available.
QuotationNotAvailable = 130,
Expand Down
2 changes: 2 additions & 0 deletions include/databento/record.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,8 @@ std::string ToString(const Mbp10Msg& mbp_msg);
std::ostream& operator<<(std::ostream& stream, const Mbp10Msg& mbp_msg);
std::string ToString(const BboMsg& bbo_msg);
std::ostream& operator<<(std::ostream& stream, const BboMsg& bbo_msg);
std::string ToString(const Cmbp1Msg& cmbp1_msg);
std::ostream& operator<<(std::ostream& stream, const Cmbp1Msg& cmbp1_msg);
std::string ToString(const CbboMsg& cbbo_msg);
std::ostream& operator<<(std::ostream& stream, const CbboMsg& cbbo_msg);
std::string ToString(const TradeMsg& trade_msg);
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.35.0
pkgver=0.35.1
pkgrel=1
pkgdesc="Official C++ client for Databento"
arch=('any')
Expand Down
Loading