From 0c93b977b9c243906cb5a17e289eb8d100f8e456 Mon Sep 17 00:00:00 2001 From: Collins Muriuki Date: Sat, 26 Aug 2023 18:06:18 +0300 Subject: [PATCH] v1.0.0 release --- Cargo.toml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aa9412f42..400f2eccb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "mpesa" -version = "0.4.2" +version = "1.0.0" authors = ["Collins Muriuki "] -edition = "2018" +edition = "2021" description = "A wrapper around the M-PESA API in Rust." keywords = ["api", "mpesa", "mobile"] repository = "https://github.com/collinsmuriuki/mpesa-rust" diff --git a/README.md b/README.md index f2eddf418..de7c66298 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ An unofficial Rust wrapper around the [Safaricom API](https://developer.safarico ```toml [dependencies] -mpesa = { git = "https://github.com/collinsmuriuki/mpesa-rust" } +mpesa = { version = "1.0.0" } ``` Optionally, you can disable default-features, which is basically the entire suite of MPESA APIs to conditionally select from either: @@ -33,7 +33,7 @@ Example: ```toml [dependencies] -mpesa = { git = "https://github.com/collinsmuriuki/mpesa-rust", default_features = false, features = ["b2b", "express_request"] } +mpesa = { git = "1.0.0", default_features = false, features = ["b2b", "express_request"] } ``` In your lib or binary crate: