From 1465fa2acaa9b592a02a681930ab9f984a93184c Mon Sep 17 00:00:00 2001 From: Kleber Inoue Date: Tue, 14 Nov 2023 09:57:41 -0300 Subject: [PATCH] release 2.0.0 --- CHANGELOG.md | 3 +++ setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77cbe41..43a1cbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization. +## [2.0.0](https://github.com/quintoandar/validations-engine/releases/tag/2.0.0) +### Changed +GchatHelper and message classes were added as the main messenger service. So in this release, the errors can't be sent to Slack. In the next release, we'll add the option to choose between Slack and GChat services. ## [1.0.1](https://github.com/quintoandar/validations-engine/releases/tag/1.0.1) ### Fixed SlackHelper send_slack_errors method returns the correct Boolean value depending on the success of messages. diff --git a/setup.cfg b/setup.cfg index fbd26b1..b59fd13 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 2.0.0 commit = True tag = True diff --git a/setup.py b/setup.py index d9847e7..889732b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages __package_name__ = "validations_engine" -__version__ = "1.0.1" +__version__ = "2.0.0" __repository_url__ = "https://github.com/quintoandar/validations-engine"