diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c49c6310..00bbe7c86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ 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)* +## [1.0.0] - 2023-09-26 +### Updated +- [Community] Migrate to the updated octobot.cloud. Full details on https://blog.octobot.online/introducing-the-new-octobot-cloud +- [Logs] Improve debug logs +### Fixed +- [GridTrading] Mirror order rebalance issues +- [DCA & Dip Analyser] Sell order split issues + ## [0.4.54] - 2023-08-31 ### Added - [Kucoin] API Key permissions checks diff --git a/README.md b/README.md index 76dd2d7d2..7761c4e7f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot [0.4.54](https://octobot.click/gh-changelog) +# OctoBot [1.0.0](https://octobot.click/gh-changelog) [![PyPI](https://img.shields.io/pypi/v/OctoBot.svg?logo=pypi)](https://octobot.click/gh-pypi) [![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://octobot.click/gh-dockerhub) @@ -21,8 +21,8 @@ Intro

-## Launch of the new OctoBot Cloud -The OctoBot team is proud to announce the launch of the [new octobot.cloud](https://octobot.cloud/?utm_source=github&utm_medium=dk&utm_campaign=production_annoucements&utm_content=readme) +## Launch of the new OctoBot cloud +The OctoBot team is proud to announce the launch of the [new octobot.cloud](https://octobot.cloud/?utm_source=github&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=readme) where 90% of trading strategies can be automated **in a very easy way** and **for free**. [![try octobot cloud now](https://img.shields.io/static/v1?label=Try%20the%20new%20OctoBot%20cloud&message=now&color=007bff&style=for-the-badge)](https://octobot.cloud/?utm_source=github&utm_medium=dk&utm_campaign=production_annoucements&utm_content=readme_button) @@ -51,7 +51,7 @@ Octobot's main feature is **evolution**, you can : ## Installation OctoBot's installation is **very simple**, you can either: -- [Deploy your OctoBot on OctoBot Cloud](https://octobot.cloud/). With OctoBot Cloud, experience hassle-free installation, updates, and maintenance - leave it all to us! Your robot will also benefit from cloud only features. +- [Deploy your OctoBot on OctoBot Cloud](https://octobot.cloud/?utm_source=github&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=readme_deploy_on_cloud). With OctoBot cloud, experience hassle-free installation, updates, and maintenance - leave it all to us! Your robot will also benefit from cloud only features. - [Download and install](https://www.octobot.info/installation/local-installation) OctoBot on your computer or server and enjoy all features for free. - Install OctoBot [using docker](https://www.octobot.info/installation/local-installation#option-2-with-docker). diff --git a/octobot/__init__.py b/octobot/__init__.py index 6470e6058..dc6c893fe 100644 --- a/octobot/__init__.py +++ b/octobot/__init__.py @@ -16,5 +16,5 @@ PROJECT_NAME = "OctoBot" AUTHOR = "Drakkar-Software" -VERSION = "0.4.54" # major.minor.revision +VERSION = "1.0.0" # major.minor.revision LONG_VERSION = f"{VERSION}" diff --git a/octobot/constants.py b/octobot/constants.py index 2bb67d590..80516dcfc 100644 --- a/octobot/constants.py +++ b/octobot/constants.py @@ -41,7 +41,6 @@ DEVELOPER_DOCS_URL = os.getenv("DOCS_OCTOBOT_ONLINE_URL", "https://developer.octobot.info/") OCTOBOT_ONLINE = os.getenv("TENTACLES_OCTOBOT_ONLINE_URL", "https://static.octobot.online") OCTOBOT_FEEDBACK = os.getenv("FEEDBACK_OCTOBOT_ONLINE_URL", "https://feedback.octobot.online/") -OCTOBOT_CLOUD_URL = os.getenv("OCTOBOT_CLOUD_URL", "https://octobot.cloud/") TENTACLES_REPOSITORY = "tentacles" BETA_TENTACLES_REPOSITORY = "dev-tentacles" OFFICIALS = "officials"