From e538f7488ffba33ef9fc43514e1a79d1d7e4dc32 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Tue, 14 Jun 2022 23:16:39 -0700 Subject: [PATCH] Bump version to 0.25.0 This change bumps the crate to version 0.25.0. The following notable changes have been made since 0.24.0: - Added gzip compression support for transparent API response compression controlled by default enabled gzip feature - Added support for subscribing to realtime trades - Reworked symbols related types in data::v2::stream module - Added class member to api::v2::order::Order type - Added symbols member to api::v2::orders::OrdersReq type - Added Deserialize implementation for more types - Updated ActivityType enum to be in sync with upstream variants - Made api::v2::position::Position exhaustive - Bumped uuid dependency to 1.0 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7e30d9e..64f9840a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Unreleased ----------- +0.25.0 +------ - Added `gzip` compression support for transparent API response compression controlled by default enabled `gzip` feature - Added support for subscribing to realtime trades diff --git a/Cargo.toml b/Cargo.toml index 56434a21..11e7ad1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apca" -version = "0.24.0" +version = "0.25.0" edition = "2021" authors = ["Daniel Mueller "] license = "GPL-3.0-or-later"