diff --git a/.changeset/fix-bundle-bloat.md b/.changeset/fix-bundle-bloat.md deleted file mode 100644 index 3748042..0000000 --- a/.changeset/fix-bundle-bloat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -Reduce initial JS bundle from 1 466 kB to 487 kB (−67%) by removing 10 unused packages, lazy-loading ExcelJS via dynamic import diff --git a/.changeset/stats-hero-and-ui-polish.md b/.changeset/stats-hero-and-ui-polish.md deleted file mode 100644 index 728afa1..0000000 --- a/.changeset/stats-hero-and-ui-polish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": major ---- - -Success screen now shows a financial snapshot — date range covered, total money in, total money out, and charges — all derived from the parsed statement before you export. Window height reduced from 850 → 650px, footer simplified to a single line, and dead-zone layout issues resolved. diff --git a/.changeset/ux-success-state-simplification.md b/.changeset/ux-success-state-simplification.md deleted file mode 100644 index 8b6eebc..0000000 --- a/.changeset/ux-success-state-simplification.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": patch ---- - -improved success state ui diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3b1a6..bd565ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # mpesa2csv +## 1.0.0 + +### Major Changes + +- [#70](https://github.com/davidamunga/mpesa2csv/pull/70) [`9e0ac87`](https://github.com/davidamunga/mpesa2csv/commit/9e0ac873f21a1fb7e76099a3ed34f3e0caa10527) Thanks [@davidamunga](https://github.com/davidamunga)! - Success screen now shows a financial snapshot — date range covered, total money in, total money out, and charges — all derived from the parsed statement before you export. Window height reduced from 850 → 650px, footer simplified to a single line, and dead-zone layout issues resolved. + +### Patch Changes + +- [#69](https://github.com/davidamunga/mpesa2csv/pull/69) [`0395f66`](https://github.com/davidamunga/mpesa2csv/commit/0395f66944e52e8514257f1a81a8adfee8cdba88) Thanks [@davidamunga](https://github.com/davidamunga)! - Reduce initial JS bundle from 1 466 kB to 487 kB (−67%) by removing 10 unused packages, lazy-loading ExcelJS via dynamic import + +- [#70](https://github.com/davidamunga/mpesa2csv/pull/70) [`6c45724`](https://github.com/davidamunga/mpesa2csv/commit/6c45724c32db6fb9d2b54f2af3468af7b8eb3690) Thanks [@davidamunga](https://github.com/davidamunga)! - improved success state ui + ## 0.14.0 ### Minor Changes diff --git a/README.md b/README.md index 9c8bdab..7446db7 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.14.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) + [![Version](https://img.shields.io/badge/version-1.0.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 d005bd6..20c1e6b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mpesa2csv", "private": true, - "version": "0.14.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d1c74aa..765b8a7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mpesa2csv" -version = "0.14.0" +version = "1.0.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 13376c1..0b59ba0 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.14.0", + "version": "1.0.0", "identifier": "com.amunga.david.mpesa2csv", "build": { "beforeDevCommand": "pnpm dev",