From a87ab205ef90aed8f5f893defb94c3aa86aaf398 Mon Sep 17 00:00:00 2001 From: Luis Sanchez Date: Thu, 27 Aug 2026 08:48:49 -0500 Subject: [PATCH] chore: bump version to 3.6.0 --- CHANGELOG.md | 8 ++++++++ mercadopago/config/config.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01241a6..5229024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.6.0] - 2026-08-27 + +### Added +- **Credential-on-file and automatic payments**: support `network_data`, expanded gateway network data, and `automatic_payments.subscription`. + +### CI +- Publish to PyPI through GitHub OIDC trusted publishing. + ## [3.5.0] - 2026-08-11 ### Changed diff --git a/mercadopago/config/config.py b/mercadopago/config/config.py index 0ade29b..9cf961a 100644 --- a/mercadopago/config/config.py +++ b/mercadopago/config/config.py @@ -26,7 +26,7 @@ class Config: def __init__(self): """Builds version-dependent values (user_agent, tracking_id).""" - self.__version = "3.5.0" + self.__version = "3.6.0" self.__user_agent = "MercadoPago Python SDK v" + self.__version self.__product_id = "bc32bpftrpp001u8nhlg" self.__tracking_id = "platform:" + platform.python_version() diff --git a/pyproject.toml b/pyproject.toml index d00ac83..1e14e47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mercadopago" -version = "3.5.0" +version = "3.6.0" authors = [ {name = "Mercado Pago", email = "mp_sdk@mercadopago.com"} ]