diff --git a/CHANGELOG.md b/CHANGELOG.md index d7ee44083..ce6a02558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ 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)* +## [0.4.41] - 2023-03-03 +### Added +- Trades PNL history for supported trading mode +- Support for OKX futures +- Support for market orders in Dip Analyser +### Updated +- Revamped the trading tab of the web interface +- Reduced required RAM for long-lasting instances +- Optimized disc read/write operations when browsing the web interface +### Fixed +- Orders synchronization and cancel issues +- Future trading positions synchronization issues +- Order creation issues related to order minimum and maximum amounts + ## [0.4.40] - 2023-02-17 ### Fixed - Historical portfolio reset diff --git a/README.md b/README.md index fd1c59e44..80cfa991a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot [0.4.40](https://octobot.click/gh-changelog) +# OctoBot [0.4.41](https://octobot.click/gh-changelog) [![PyPI](https://img.shields.io/pypi/v/OctoBot.svg)](https://octobot.click/gh-pypi) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/e07fb190156d4efb8e7d07aaa5eff2e1)](https://app.codacy.com/gh/Drakkar-Software/OctoBot?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot&utm_campaign=Badge_Grade_Dashboard)[![Downloads](https://pepy.tech/badge/octobot/month)](https://pepy.tech/project/octobot) [![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg)](https://octobot.click/gh-dockerhub) diff --git a/octobot/__init__.py b/octobot/__init__.py index 937302f9c..0dbd6cd56 100644 --- a/octobot/__init__.py +++ b/octobot/__init__.py @@ -16,5 +16,5 @@ PROJECT_NAME = "OctoBot" AUTHOR = "Drakkar-Software" -VERSION = "0.4.40" # major.minor.revision +VERSION = "0.4.41" # major.minor.revision LONG_VERSION = f"{VERSION}"