diff --git a/CHANGELOG.md b/CHANGELOG.md index 75688313..e858939a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.3] - 2020-01-12 +### Added +- get_evaluator_classes_from_type API method + +### Updated +- Typing for API methods +- Social evaluator intialization + ## [1.3.2] - 2020-01-07 ### Added - Cryptocurrency related evaluator diff --git a/README.md b/README.md index 08e9b024..900d65eb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot-Evaluators [1.3.2](https://github.com/Drakkar-Software/OctoBot-Evaluators/blob/master/CHANGELOG.md) +# OctoBot-Evaluators [1.3.3](https://github.com/Drakkar-Software/OctoBot-Evaluators/blob/master/CHANGELOG.md) [![PyPI](https://img.shields.io/pypi/v/OctoBot-Evaluators.svg)](https://pypi.python.org/pypi/OctoBot-Evaluators/) [![Build Status](https://travis-ci.com/Drakkar-Software/OctoBot-Evaluators.svg?branch=master)](https://travis-ci.org/Drakkar-Software/OctoBot-Evaluators) [![Build status](https://ci.appveyor.com/api/projects/status/p68n2y6547xhw0t6?svg=true)](https://ci.appveyor.com/project/Herklos/octobot-evaluators) diff --git a/octobot_evaluators/__init__.py b/octobot_evaluators/__init__.py index d6a66640..9de92ad3 100644 --- a/octobot_evaluators/__init__.py +++ b/octobot_evaluators/__init__.py @@ -15,4 +15,4 @@ # License along with this library. PROJECT_NAME = "OctoBot-Evaluators" -VERSION = "1.3.2" # major.minor.revision +VERSION = "1.3.3" # major.minor.revision