Skip to content

Commit 720cfa8

Browse files
committed
feat - bump version to 0.3.6
1 parent 92a41a9 commit 720cfa8

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ An unofficial Rust wrapper around the [Safaricom API](https://developer.safarico
2525

2626
```toml
2727
[dependencies]
28-
mpesa = "0.3.5"
28+
mpesa = "0.3.6"
2929
```
3030

3131
Optionally, you can disable default-features, which is basically the entire suite of MPESA APIs to conditionally select from either `["b2b", "b2c", "account_balance"]` services, which make use of `openssl` and `base64` dependencies that can be opted out of compilation if not required.
3232

3333
```toml
3434
[dependencies]
35-
mpesa = { version = "0.3.5", default_features = false, features = ["b2b"] }
35+
mpesa = { version = "0.3.6", default_features = false, features = ["b2b"] }
3636
```
3737

3838
In your lib or binary crate:

mpesa_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mpesa"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
authors = ["Collins Muriuki <[email protected]>"]
55
edition = "2018"
66
description = "A wrapper around the M-PESA API in Rust."

mpesa_core/src/lib.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@
55
//!## Install
66
//! `Cargo.toml`
77
//!
8-
//! ```md
8+
//! ```toml
99
//! [dependencies]
10-
//! mpesa = "0.3.5"
10+
//! mpesa = "0.3.6"
11+
//! ```
12+
//! Optionally, you can disable default-features, which is basically the entire suite of MPESA APIs to conditionally select from either `["b2b", "b2c", "account_balance"]` services, which make use of `openssl` and `base64` dependencies that can be opted out of compilation if not required.
13+
//!
14+
//! ```toml
15+
//! [dependencies]
16+
//! mpesa = { version = "0.3.6", default_features = false, features = ["b2b"] }
1117
//! ```
1218
//!
1319
//! In your lib or binary crate:

0 commit comments

Comments
 (0)