From 39fc50b7dcfe31181c55b25d0f68e07f0084e1e8 Mon Sep 17 00:00:00 2001 From: Iulian Masar Date: Fri, 22 Nov 2024 15:56:27 +0200 Subject: [PATCH] version bump 3.36.0 --- CHANGELOG.md | 11 +++++++++++ setup.py | 5 +++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89b123a..2ce3841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [3.36.0] - 2024-11-22 +### Added + +New endpoints for The Virtual Account object: + +- Create a Virtual Account +- Deactivate a Virtual Account +- View a Virtual Account +- List Virtual Accounts for a Wallet +- View Client Availabilities + ## [3.35.1] - 2024-09-03 ### Fixed diff --git a/setup.py b/setup.py index 9f1dec6..d07619c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,8 @@ -from setuptools import setup, find_packages from codecs import open from os import path +from setuptools import setup, find_packages + here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'DESCRIPTION.md'), encoding='utf-8') as f: @@ -9,7 +10,7 @@ setup( name='mangopaysdk', - version='3.35.1', + version='3.36.0', description='A client library written in python to work with mangopay v2 api', long_description='This SDK is a client library for interacting with the Mangopay API.', url='https://github.com/Mangopay/mangopay2-python-sdk',