Skip to content

Commit a5466ca

Browse files
authored
Merge pull request #161 from Adyen/PW-6690
[PW-6690] - Implement Checkout API v69
2 parents 9276d0f + e32aee3 commit a5466ca

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

Adyen/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
ENDPOINT_CHECKOUT_LIVE_SUFFIX = "https://{}-checkout-live" \
88
".adyenpayments.com/checkout"
99
API_BIN_LOOKUP_VERSION = "v50"
10-
API_CHECKOUT_VERSION = "v68"
10+
API_CHECKOUT_VERSION = "v69"
1111
API_CHECKOUT_UTILITY_VERSION = "v1"
1212
API_RECURRING_VERSION = "v49"
1313
API_PAYMENT_VERSION = "v64"
1414
API_PAYOUT_VERSION = "v64"
15-
LIB_VERSION = "6.0.0"
15+
LIB_VERSION = "7.0.0"
1616
LIB_NAME = "adyen-python-api-library"

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
# Adyen APIs Library for Python
2+
13
[![Build Status](https://travis-ci.org/Adyen/adyen-python-api-library.svg?branch=main)](https://travis-ci.org/Adyen/adyen-python-api-library)
24
[![Coverage Status](https://coveralls.io/repos/github/Adyen/adyen-python-api-library/badge.svg?branch=main)](https://coveralls.io/github/Adyen/adyen-python-api-library?branch=main)
5+
[![version](https://img.shields.io/badge/version-7.0.0-blue.svg)](https://docs.adyen.com/development-resources/libraries)
36

47
This is the officially supported Python library for using Adyen's APIs.
8+
59
## Integration
610
The library supports all APIs under the following services:
711

8-
* [Checkout API](https://docs.adyen.com/api-explorer/#/CheckoutService/v68/overview): Our latest integration for accepting online payments. Current supported version: **v68**
12+
* [Checkout API](https://docs.adyen.com/api-explorer/#/CheckoutService/v69/overview): Our latest integration for accepting online payments. Current supported version: **v69**
913
* [Payments API](https://docs.adyen.com/api-explorer/#/Payment/v64/overview): Our classic integration for online payments. Current supported version: **v64**
1014
* [Recurring API](https://docs.adyen.com/api-explorer/#/Recurring/v49/overview): Endpoints for managing saved payment details. Current supported version: **v49**
1115
* [Payouts API](https://docs.adyen.com/api-explorer/#/Payout/v64/overview): Endpoints for sending funds to your customers. Current supported version: **v64**

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='Adyen',
55
packages=['Adyen'],
6-
version='6.0.0',
6+
version='7.0.0',
77
maintainer='Adyen',
88
maintainer_email='support@adyen.com',
99
description='Adyen Python Api',

test/CheckoutTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def test_payments_error_mocked(self):
9191
result = self.adyen.checkout.payments(request)
9292

9393
self.adyen.client.http_client.request.assert_called_once_with(
94-
'https://checkout-test.adyen.com/v68/payments',
94+
'https://checkout-test.adyen.com/v69/payments',
9595
headers={},
9696
json={
9797
'returnUrl': 'https://your-company.com/...',
@@ -134,7 +134,7 @@ def test_payments_details_success_mocked(self):
134134
result = self.adyen.checkout.payments_details(request)
135135

136136
self.adyen.client.http_client.request.assert_called_once_with(
137-
u'https://checkout-test.adyen.com/v68/payments/details',
137+
u'https://checkout-test.adyen.com/v69/payments/details',
138138
headers={},
139139
json={
140140
'paymentData': 'Hee57361f99....',

0 commit comments

Comments
 (0)