From 7f856f0a3d6af1068fa663f30fff7c276b873ba9 Mon Sep 17 00:00:00 2001 From: Benjamin Dornel Date: Tue, 27 Aug 2024 00:31:22 +0800 Subject: [PATCH] chore(release): prepare for 0.10.10 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4fd5a46..ffe7e829 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Changelog +## [0.10.10] - 2024-08-26 + +### 🚜 Refactor + +- *(generic)* Make most common tuples into set instead of list +- *(generic)* Create separate class for pattern matching +- *(constants)* Make enums into top level file + +### ⚙️ Miscellaneous Tasks + +- Make CLI banner more concise +- *(generic)* Remove redundant typehint for date_regex_patterns +- *(generic)* Remove redundant results var +- *(generic)* Use self.pages directly instead of passing self.pages +- *(generic)* Rename vars/functions to use "spans" instead of tuples +- *(constants)* Move enums in config to statement + +## [0.11.0] - 2024-08-26 + +### 🚜 Refactor + +- *(generic)* Make most common tuples into set instead of list +- *(generic)* Create separate class for pattern matching +- *(constants)* Make enums into top level file + +### ⚙️ Miscellaneous Tasks + +- Make CLI banner more concise +- *(generic)* Remove redundant typehint for date_regex_patterns +- *(generic)* Remove redundant results var +- *(generic)* Use self.pages directly instead of passing self.pages +- *(generic)* Rename vars/functions to use "spans" instead of tuples +- *(constants)* Move enums in config to statement + ## [0.10.9] - 2024-08-21 ### ⛰️ Features diff --git a/pyproject.toml b/pyproject.toml index e2d192bd..1d2a1a46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "monopoly-core" -version = "0.10.9" +version = "0.10.10" description = "Monopoly is a Python library & CLI that converts bank statement PDFs to CSV" repository = "https://github.com/benjamin-awd/monopoly" authors = ["benjamin-awd "]