Skip to content

Commit

Permalink
version: 0.8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 3, 2025
1 parent 8dfab57 commit df04028
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*

## [0.8.17] - 2025-01-03

### Fixed

* Issue with cancel for mbway

## [0.8.16] - 2025-01-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

setuptools.setup(
name="budy",
version="0.8.16",
version="0.8.17",
author="Hive Solutions Lda.",
author_email="development@hive.pt",
description="Budy E-commerce System",
Expand Down
2 changes: 1 addition & 1 deletion src/budy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_seeplus_api(self):
return self.seeplus_api

def _version(self):
return "0.8.16"
return "0.8.17"

def _description(self):
return "Budy"
Expand Down
7 changes: 6 additions & 1 deletion src/budy/models/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,12 @@ def _pay_easypay_v2(self, payment_data, warning_d=None, cancel_d=None):
cancel = payment["cancel"]
customer = payment.get("customer", None)
self.payment_data = dict(
engine="easypay_v2", type=type, identifier=identifier, customer=customer
engine="easypay_v2",
type=type,
identifier=identifier,
customer=customer,
warning=warning,
cancel=cancel,
)
return False

Expand Down

0 comments on commit df04028

Please sign in to comment.