From b6a0c73ebfe35c62f340656f800f54c77272cc3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Thu, 11 Jan 2024 21:27:56 -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 minimum supported Rust version to 1.63 - Bumped websocket-util dependency to 0.12 - Bumped tokio-tungstenite dependency to 0.20 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- src/lib.rs | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5205838..ec1b760 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 796d9d9..e5a53a2 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.63" authors = ["Daniel Mueller "] diff --git a/src/lib.rs b/src/lib.rs index 0776c98..779b9f2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,6 @@ overflowing_literals, path_statements, patterns_in_fns_without_body, - private_in_public, proc_macro_derive_resolution_fallback, renamed_and_removed_lints, rust_2018_compatibility,