Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/config/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="title">Module <code>mercadopago.config.config</code></h1>
&#34;&#34;&#34;

def __init__(self):
self.__version = &#34;2.0.9&#34;
self.__version = &#34;2.0.10&#34;
self.__user_agent = &#34;MercadoPago Python SDK v&#34; + self.__version
self.__product_id = &#34;bc32bpftrpp001u8nhlg&#34;
self.__tracking_id = &#34;platform:&#34; + platform.python_version()
Expand Down Expand Up @@ -123,7 +123,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
&#34;&#34;&#34;

def __init__(self):
self.__version = &#34;2.0.9&#34;
self.__version = &#34;2.0.10&#34;
self.__user_agent = &#34;MercadoPago Python SDK v&#34; + self.__version
self.__product_id = &#34;bc32bpftrpp001u8nhlg&#34;
self.__tracking_id = &#34;platform:&#34; + platform.python_version()
Expand Down
2 changes: 1 addition & 1 deletion docs/config/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
&#34;&#34;&#34;

def __init__(self):
self.__version = &#34;2.0.9&#34;
self.__version = &#34;2.0.10&#34;
self.__user_agent = &#34;MercadoPago Python SDK v&#34; + self.__version
self.__product_id = &#34;bc32bpftrpp001u8nhlg&#34;
self.__tracking_id = &#34;platform:&#34; + platform.python_version()
Expand Down
2 changes: 1 addition & 1 deletion mercadopago/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Config:
"""

def __init__(self):
self.__version = "2.0.9"
self.__version = "2.0.10"
self.__user_agent = "MercadoPago Python SDK v" + self.__version
self.__product_id = "bc32bpftrpp001u8nhlg"
self.__tracking_id = "platform:" + platform.python_version()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="mercadopago",
version="2.0.9",
version="2.0.10",
description="Mercadopago SDK module for Payments integration",
author="Mercado Pago SDK",
author_email="mp_sdk@mercadopago.com",
Expand Down