diff --git a/.changeset/public-cloths-tease.md b/.changeset/public-cloths-tease.md deleted file mode 100644 index 5163239..0000000 --- a/.changeset/public-cloths-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"mpesa2csv": minor ---- - -feat: add total charges in header summary diff --git a/CHANGELOG.md b/CHANGELOG.md index f5d5d96..c7dd54c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # mpesa2csv +## 0.12.0 + +### Minor Changes + +- [#59](https://github.com/DavidAmunga/mpesa2csv/pull/59) [`dd6ea1b`](https://github.com/DavidAmunga/mpesa2csv/commit/dd6ea1b3200aed05737467b785c79d9a5e96da9d) Thanks [@DavidAmunga](https://github.com/DavidAmunga)! - feat: add total charges in header summary + ## 0.11.4 ### Patch Changes diff --git a/README.md b/README.md index a545583..3b93f3f 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.11.4-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases) + [![Version](https://img.shields.io/badge/version-0.12.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 aaa6f11..ba214b5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mpesa2csv", "private": true, - "version": "0.11.4", + "version": "0.12.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index be8e702..777d033 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mpesa2csv" -version = "0.11.4" +version = "0.12.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 3419019..d1eac94 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.11.4", + "version": "0.12.0", "identifier": "com.amunga.david.mpesa2csv", "build": { "beforeDevCommand": "pnpm dev",