From 47a7e1826190a4a100790e837a753dd430e07deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Sun, 18 Jun 2023 18:22:51 -0700 Subject: [PATCH] Bump version to 0.27.0 This change bumps the crate to version 0.27.0. The following notable changes have been made since 0.26.2: - Added support for overwriting default realtime data bar, quote, and trade types - Added support for working with custom v2 realtime data streaming URLs - Added FillOrKill and ImmediateOrCancel variants to api::v2::order::TimeInForce type - Changed various data::v2::stream::{Bar, Quote, Trade} members from u64 to Num - Switched to using new stream authentication request message format - Adjusted publish workflow to also create GitHub release and Git tag --- CHANGELOG.md | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff27d827..47191c82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -Unreleased ----------- +0.27.0 +------ - Added support for overwriting default realtime data bar, quote, and trade types - Added support for working with custom v2 realtime data streaming URLs - Added `FillOrKill` and `ImmediateOrCancel` variants to `api::v2::order::TimeInForce` type -- Changed various `data::v2::stream::{Bar, Quote, Trade}` member from +- Changed various `data::v2::stream::{Bar, Quote, Trade}` members from `u64` to `Num` - Switched to using new stream authentication request message format - Adjusted publish workflow to also create GitHub release and Git tag diff --git a/Cargo.toml b/Cargo.toml index b1961739..5216492f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apca" -version = "0.26.2" +version = "0.27.0" edition = "2021" rust-version = "1.59" authors = ["Daniel Mueller "]