diff --git a/CHANGELOG.md b/CHANGELOG.md index e685e88..1da463f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.5.1](https://github.com/conekta/conekta-python/releases/tag/v2.5.1) - 2019-12-31 +### Change +- Adds message field for error object where it was previously missing + ## [2.4.0](https://github.com/conekta/conekta-python/releases/tag/v2.4.0) - 2017-09-18 ### Change - Change httplib2 library for requests diff --git a/conekta/__init__.py b/conekta/__init__.py index 7dd0a3f..429d570 100644 --- a/conekta/__init__.py +++ b/conekta/__init__.py @@ -17,7 +17,7 @@ API_VERSION = '2.0.0' -__version__ = '2.4.0' +__version__ = '2.5.1' __author__ = 'Leo Fischer' API_BASE = 'https://api.conekta.io/' diff --git a/setup.py b/setup.py index 092cabc..cc43fff 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages -version = "2.4.0" +version = "2.5.1" author = "Conekta" setup(