From b9d87d0b101c906cd890a604433c1be6681c59e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 9 Jan 2024 07:04:18 -0800 Subject: [PATCH] Bump version to 0.28.0 This change bumps the crate to version 0.28.0. The following notable changes have been made since 0.27.2: - Removed ApiError::code member after endpoint reported errors stopped returning it - Renamed AuthenticationFailed variant of endpoint errors to NotPermitted - This variant is now used to signal a multitude of conditions, including certain order submission issues - Bumped websocket-util dependency to 0.12 - Bumped tokio-tungstenite dependency to 0.20 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 780fa92..69b8454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Unreleased ----------- +0.28.0 +------ - Removed `ApiError::code` member after endpoint reported errors stopped returning it - Renamed `AuthenticationFailed` variant of endpoint errors to diff --git a/Cargo.toml b/Cargo.toml index 161ed74..6b88f74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apca" -version = "0.27.2" +version = "0.28.0" edition = "2021" rust-version = "1.59" authors = ["Daniel Mueller "]