diff --git a/.changeset/feat-ux-improvements.md b/.changeset/feat-ux-improvements.md deleted file mode 100644 index 9efee60..0000000 --- a/.changeset/feat-ux-improvements.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"mpesa2csv": minor ---- - -- Clickable drop zone -- Cancel button during processing -- Transaction preview before export -- Re-export without Start Again -- XLSX blob only on Export click -- Visible webhook result badge. diff --git a/.changeset/fix-analytics-sheets-respect-filters.md b/.changeset/fix-analytics-sheets-respect-filters.md deleted file mode 100644 index af02dff..0000000 --- a/.changeset/fix-analytics-sheets-respect-filters.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -Fix analytics sheets ignoring active export filters (e.g. exclude charges, sort order). diff --git a/.changeset/fix-multi-file-password-state-loss.md b/.changeset/fix-multi-file-password-state-loss.md deleted file mode 100644 index 07621c7..0000000 --- a/.changeset/fix-multi-file-password-state-loss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -Fix multi-file batch losing already-processed statements when a mid-batch file requires a password. diff --git a/.changeset/fix-security-audit.md b/.changeset/fix-security-audit.md deleted file mode 100644 index 5816de2..0000000 --- a/.changeset/fix-security-audit.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -"mpesa2csv": patch ---- -fix : dependencies security diff --git a/.changeset/fix-silent-empty-success.md b/.changeset/fix-silent-empty-success.md deleted file mode 100644 index b698ca0..0000000 --- a/.changeset/fix-silent-empty-success.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -Treat a parsed PDF with zero transactions as an error instead of showing a silent success screen. diff --git a/.changeset/fix-timeout-kills-java.md b/.changeset/fix-timeout-kills-java.md deleted file mode 100644 index d5c5a16..0000000 --- a/.changeset/fix-timeout-kills-java.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -Kill the Java/Tabula process when PDF extraction times out instead of leaving it running in the background. diff --git a/CHANGELOG.md b/CHANGELOG.md index a329535..6e3b1a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # mpesa2csv +## 0.14.0 + +### Minor Changes + +- [#67](https://github.com/davidamunga/mpesa2csv/pull/67) [`159e467`](https://github.com/davidamunga/mpesa2csv/commit/159e467a4672cdf425a3b4abcc83a6151edde763) Thanks [@davidamunga](https://github.com/davidamunga)! - - Clickable drop zone + - Cancel button during processing + - Transaction preview before export + - Re-export without Start Again + - XLSX blob only on Export click + - Visible webhook result badge. + +### Patch Changes + +- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`65c8984`](https://github.com/davidamunga/mpesa2csv/commit/65c8984b738ad2b2d67b8f3dcb66397e2eec7b3e) Thanks [@davidamunga](https://github.com/davidamunga)! - Fix analytics sheets ignoring active export filters (e.g. exclude charges, sort order). + +- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Fix multi-file batch losing already-processed statements when a mid-batch file requires a password. + +- [#66](https://github.com/davidamunga/mpesa2csv/pull/66) [`1dfacf4`](https://github.com/davidamunga/mpesa2csv/commit/1dfacf4e67f72335730c6427e209063c23ab1e41) Thanks [@davidamunga](https://github.com/davidamunga)! - fix : dependencies security + +- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Treat a parsed PDF with zero transactions as an error instead of showing a silent success screen. + +- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Kill the Java/Tabula process when PDF extraction times out instead of leaving it running in the background. + ## 0.13.0 ### Minor Changes diff --git a/README.md b/README.md index 0e20f90..9c8bdab 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ **Convert M-PESA Statement PDFs to CSV/Excel with Advanced Analytics** - [![Version](https://img.shields.io/badge/version-0.13.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) + [![Version](https://img.shields.io/badge/version-0.14.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux%20%7C%20Android-lightgrey.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) [![Downloads](https://img.shields.io/github/downloads/DavidAmunga/mpesa2csv/total.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) diff --git a/package.json b/package.json index a9d8673..25566d8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mpesa2csv", "private": true, - "version": "0.13.0", + "version": "0.14.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e1753b7..d1c74aa 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mpesa2csv" -version = "0.13.0" +version = "0.14.0" description = "Convert M-PESA Statements to CSV/Excel Files" authors = ["David Amunga"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index dc3c00f..2b58191 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "mpesa2csv", - "version": "0.13.0", + "version": "0.14.0", "identifier": "com.amunga.david.mpesa2csv", "build": { "beforeDevCommand": "pnpm dev",