From 166b44afbf85efec309f668b932f78a97e44bc47 Mon Sep 17 00:00:00 2001 From: Jesse Brooklyn Hannah Date: Tue, 21 Jan 2025 16:54:03 -0800 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2836f8d..276eaca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v1.2.0 (unreleased) + +- Add `Transaction.cleared` boolean field. +- Add `RepeatingTransaction.last_cleared` date field. All `Transactions` yielded + will have their `cleared` field set to true if the date is before the value of + `last_cleared`. The same rule applies to `RepeatingTransfer`. +- Add `cleared: bool | None` parameters to `Account` methods, where a non-`None` + value filters account transactions by the given value for `cleared`. + ## v1.1.1 (2025-01-13) - Removed the ability to set a transaction's amount to a callback until I've