diff --git a/CHANGELOG.md b/CHANGELOG.md index 030acd885..dcfa5ca75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 *It is strongly advised to perform an update of your tentacles after updating OctoBot. (start.py tentacles --install --all)* +## [2.0.6] - 2024-10-08 +### Added +- [TradingView] Support email TradingView alerts +### Updated +- [TradingView] Improve webhook display +- [WebInterface] Improve account +- [HollaEx] Improve global support +### Fixed +- [Orders] Fixed synchronization issues +- [Storage] Fixed order storage issues +- [Exchanges] Retry market status fetch when failing for timeout +- [Credentials] Handle exchange credentials with leading/ending white spaces and newlines +- [Extension] Fixed extension check and checkout session issues +- [Exchanges] Fixed rare invalid key error misinterpretation +- [WebInterface] Fix notifications related web interface performance issues +- [WebInterface] Fix fetch_upgrade_version performance issues +- [Evaluators] Remove irrelevant warning on real-time evaluators global update + ## [2.0.5] - 2024-08-27 ### Fixed - [Portfolio] Fixed ZeroDivisionError issues diff --git a/README.md b/README.md index 7ae1057d1..00bec7a5b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot [2.0.5](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md) +# OctoBot [2.0.6](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md) [![PyPI](https://img.shields.io/pypi/v/OctoBot.svg?logo=pypi)](https://pypi.org/project/OctoBot) [![Downloads](https://pepy.tech/badge/octobot/month)](https://pepy.tech/project/octobot) [![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg?logo=docker)](https://hub.docker.com/r/drakkarsoftware/octobot) diff --git a/octobot/__init__.py b/octobot/__init__.py index db47d80d0..8401e9003 100644 --- a/octobot/__init__.py +++ b/octobot/__init__.py @@ -16,5 +16,5 @@ PROJECT_NAME = "OctoBot" AUTHOR = "Drakkar-Software" -VERSION = "2.0.5" # major.minor.revision +VERSION = "2.0.6" # major.minor.revision LONG_VERSION = f"{VERSION}"