From 2f704b3df73ed26f3023e2f0c9f88fb495876555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 30 Jul 2024 23:24:11 -0700 Subject: [PATCH] Bump version to 0.29.0 This change bumps the crate to version 0.29.0. The following notable changes have been made since 0.28.0: - Renamed various request related types to follow more uniform naming scheme - Added api::v2::{calendar::ListReqInit,watchlist::CreateReqInit} types - Removed api::v2::{order::ChangeReqInit,assets::ListReqInit} types in favor of Default impl for corresponding request types - Made various types non-exhaustive - Added name attribute to api::v2::watchlist::Watchlist type - Added support for updating a watchlist --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85abf5d1..e1655360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Unreleased ----------- +0.29.0 +------ - Renamed various request related types to follow more uniform naming scheme - Added `api::v2::{calendar::ListReqInit,watchlist::CreateReqInit}` diff --git a/Cargo.toml b/Cargo.toml index dffb2edc..86462e8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apca" -version = "0.28.0" +version = "0.29.0" edition = "2021" rust-version = "1.63" authors = ["Daniel Mueller "]