diff --git a/CHANGELOG.md b/CHANGELOG.md index 400d12492..e1cc79586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ 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.4] - 2024-08-25 +### Added +- [BitMart] The BitMart exchange is now officially supported +- [GridTrading] Fund redispatch delay config +### Updated +- [WebInterface] Improve portfolio history display and make it more flexible +- [Webhook] Make error messages easier to understand +- [CCXT] update to ccxt 4.3.85 +- [Community] Fix community authentication related issues +### Fixed +- [GridTrading] Fixed grid reset issues when funds redispatch is enabled +- [MEXC] Fixed MEXC traded pairs fetching issues +- [OKX] Fixed leveraging parsing issues +- [WebInterface] Fixed order cancel UI issues +- [Configuration] Fixed recovery file related iss + ## [2.0.3] - 2024-08-03 ### Added - [IndexTradingMode]: Default profile, intra-day, real time update option and custom content diff --git a/README.md b/README.md index f60a82512..bd11ab65b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot [2.0.3](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md) +# OctoBot [2.0.4](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 bd2f79797..edb057f5d 100644 --- a/octobot/__init__.py +++ b/octobot/__init__.py @@ -16,5 +16,5 @@ PROJECT_NAME = "OctoBot" AUTHOR = "Drakkar-Software" -VERSION = "2.0.3" # major.minor.revision +VERSION = "2.0.4" # major.minor.revision LONG_VERSION = f"{VERSION}"