-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from c12i/release-plz-2024-01-28T17-02-47Z
chore: release v1.1.1
- Loading branch information
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [1.1.1](https://github.com/collinsmuriuki/mpesa-rust/compare/v1.1.0...v1.1.1) - 2024-01-28 | ||
|
||
### Fixed | ||
- fix spelling | ||
- fix formatting | ||
|
||
### Other | ||
- Update README.md | ||
- Add discord badge | ||
- static lifetime for request path | ||
- remove unneeded lifetime | ||
- refactor impl of getting the pass | ||
- remove unused imports | ||
- Update README.md | ||
- Update CONTRIBUTING.md | ||
- Update workflow | ||
- Remove changelog | ||
- Add release github workflow | ||
- Update package version | ||
- Add changelog | ||
- Bump crate version | ||
- Add module level docs | ||
- Update dynamic qr code setter and request amount field's type to u32 | ||
- Update twitter url | ||
- Remove nextest config | ||
- Simplify readme table | ||
- Update readme | ||
- Add no_run marker to c2b register | ||
- Add main function to bill manager docs code snippets | ||
- Move bill manager docs to md | ||
- Remove unnecessary lazy evaluations | ||
- Fix readme failing doc test | ||
- Update docs | ||
- Fix typo in docs | ||
- Enable doc tests in readme | ||
- Fix clippy warnings | ||
- Further fix code snippet indentation in docs | ||
- Only have core apis in doc tests | ||
- Add editor config, fix indentation inconsistencies in docs | ||
- Fix transaction reversal api 400 errors | ||
- Fix dynamic qr code doc tests | ||
- Update transaction apis docs | ||
- Fix env vars not read in doc tests | ||
- Enable and move doc tests to markdown files | ||
- *(client)* Generic `send` implementation ([#89](https://github.com/collinsmuriuki/mpesa-rust/pull/89)) | ||
- Bump crate version | ||
- Maintain consistency with auth response in helpers | ||
- Fix auth response deserializion errors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mpesa" | ||
version = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Collins Muriuki <[email protected]>"] | ||
edition = "2021" | ||
description = "A wrapper around the M-PESA API in Rust." | ||
|