diff --git a/CHANGELOG.md b/CHANGELOG.md index dcfa5ca75..319ebc5f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ 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.7] - 2024-10-26 +### Added +- [TradingView] Support multiple take profits +- [TradingView] Support ";" as a parameter separator +- [GPTService] Support custom base_url to use other LLMs than OpenAI's +- [Exchanges] Support http and https proxies +### Updated +- [TradingView] Update web interface docs +### Fixed +- [Exchanges] Auth error loop +- [WebInterface] Fix markdown code display in dark mode + ## [2.0.6] - 2024-10-08 ### Added - [TradingView] Support email TradingView alerts diff --git a/README.md b/README.md index 00bec7a5b..4d2e9587c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot [2.0.6](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md) +# OctoBot [2.0.7](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) @@ -40,11 +40,6 @@ Octobot's main feature is **evolution**, you can : Looking for more info ? Check out our Octobot guides at [octobot.cloud/en/guides/octobot](https://www.octobot.cloud/en/guides/octobot?utm_source=github&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=checkout_guides) -## Current event -![bitmart octobot trade to earn banner](https://news-images.s3.fr-par.scw.cloud/bitmart-octobot-trade-to-earn-banner.png) -Join the BitMart & OctoBot partnership celebration - - ## Installation ### One click deployment using DigitalOcean OctoBot can be easily launched on the cloud from the [DigitalOcean Marketplace](https://digitalocean.pxf.io/octobot-app). diff --git a/octobot/__init__.py b/octobot/__init__.py index 8401e9003..3fd4e513d 100644 --- a/octobot/__init__.py +++ b/octobot/__init__.py @@ -16,5 +16,5 @@ PROJECT_NAME = "OctoBot" AUTHOR = "Drakkar-Software" -VERSION = "2.0.6" # major.minor.revision +VERSION = "2.0.7" # major.minor.revision LONG_VERSION = f"{VERSION}"