Skip to content

Commit b9993a3

Browse files
Chore: Setup V1
1 parent e5f2a99 commit b9993a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

paystack/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "1.0.0-beta.1"
17+
__version__ = "1.0.0"
1818
api_key=None
1919

2020
# import apis into sdk package

paystack/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7171
self.default_headers[header_name] = header_value
7272
self.cookie = cookie
7373
# Set default User-Agent.
74-
self.user_agent = 'OpenAPI-Generator/1.0.0-beta.1/python'
74+
self.user_agent = 'paystack-python/1.0.0'
7575
self.client_side_validation = configuration.client_side_validation
7676

7777
def __enter__(self):

paystack/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def to_debug_report(self):
318318
"OS: {env}\n"\
319319
"Python Version: {pyversion}\n"\
320320
"Version of the API: 1.0.0\n"\
321-
"SDK Package Version: 1.0.0-beta.1".\
321+
"SDK Package Version: 1.0.0".\
322322
format(env=sys.platform, pyversion=sys.version)
323323

324324
def get_host_settings(self):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import setup, find_packages # noqa: H301
1414

1515
NAME = "paystack-sdk"
16-
VERSION = "1.0.0-beta.1"
16+
VERSION = "1.0.0"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

0 commit comments

Comments
 (0)