Skip to content

Commit 4132b80

Browse files
committed
Fixed PR issues, created all models related to payout and payoutbatch
1 parent 64b7779 commit 4132b80

14 files changed

+1501
-16
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
name="bitpay",
77
package_dir={"": "src"},
88
packages=setuptools.find_packages(where="src"),
9-
version="2.0.0",
9+
version="1.0.2201",
1010
description="Accept bitcoin with BitPay",
1111
author="Antonio Buedo",
1212
author_email="[email protected]",

src/bitpay_sdk/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Class Client
33
package Bitpay
44
author Antonio Buedo
5-
version 1.0.0
5+
version 1.0.2201
66
See bitpay.com/api for more information.
77
"""
88
import os
@@ -49,7 +49,7 @@ class Client:
4949
* Class Client
5050
* @package Bitpay
5151
* @author Antonio Buedo
52-
* @version 1.0.0
52+
* @version 1.0.2201
5353
* See bitpay.com/api for more information.
5454
"""
5555
__configuration = None

src/bitpay_sdk/env.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PROD = "Prod"
33
TESTURL = "https://test.bitpay.com/"
44
PRODURL = "https://bitpay.com/"
5-
BITPAYAPIVERSION = "2.0.0"
6-
BITPAYPLUGININFO = "BitPay_Python_Client_v6.0.2111"
5+
BITPAYAPIVERSION = "1.0.2201"
6+
BITPAYPLUGININFO = "BitPay_Python_Client_v1.0.2201"
77
BITPAYAPIFRAME = "std"
8-
BITPAYAPIFRAMEVERSION = "1.0.0"
8+
BITPAYAPIFRAMEVERSION = "1.0.2201"

0 commit comments

Comments
 (0)