From 35402c90faf8d4f5961250273f6fff7ff8a9c297 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Sat, 18 Oct 2025 18:04:44 +0200 Subject: [PATCH] [Version] v0.0.27 --- CHANGELOG.md | 4 ++++ README.md | 2 +- octobot_script/__init__.py | 2 +- octobot_script/model/backtest_plot.py | 4 +++- requirements.txt | 2 +- setup.py | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c245d5..77e6248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.27] - 2025-10-18 +### Updated +- OctoBot to 2.0.13 + ## [0.0.26] - 2025-06-09 ### Updated - OctoBot to 2.0.12 diff --git a/README.md b/README.md index e0d8bbe..afa400e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OctoBot-Script [0.0.26](https://github.com/Drakkar-Software/OctoBot-Script/tree/master/CHANGELOG.md) +# OctoBot-Script [0.0.27](https://github.com/Drakkar-Software/OctoBot-Script/tree/master/CHANGELOG.md) [![PyPI](https://img.shields.io/pypi/v/OctoBot-Script.svg?logo=pypi)](https://pypi.python.org/pypi/octobot-script/) [![Downloads](https://static.pepy.tech/badge/OctoBot-Script/month)](https://pepy.tech/project/octobot-script) [![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/OctoBot-Script.svg?logo=docker)](https://hub.docker.com/r/drakkarsoftware/octobot-script) diff --git a/octobot_script/__init__.py b/octobot_script/__init__.py index 95f4808..bdcf120 100644 --- a/octobot_script/__init__.py +++ b/octobot_script/__init__.py @@ -16,7 +16,7 @@ PROJECT_NAME = "OctoBot-Script" AUTHOR = "Drakkar-Software" -VERSION = "0.0.26" # major.minor.revision => don't forget to also update the setup.py version +VERSION = "0.0.27" # major.minor.revision => don't forget to also update the setup.py version def _use_module_local_tentacles(): diff --git a/octobot_script/model/backtest_plot.py b/octobot_script/model/backtest_plot.py index 4d19c99..b0f8cd0 100644 --- a/octobot_script/model/backtest_plot.py +++ b/octobot_script/model/backtest_plot.py @@ -82,7 +82,9 @@ async def _get_template_data(self): "title": f"{', '.join(symbols)}", "top_title": f"{', '.join(symbols)} on {', '.join(time_frames)} from " f"{', '.join([e.capitalize() for e in exchanges])}", - "creation_time": timestamp_util.convert_timestamp_to_datetime(time.time(), self.GENERATED_TIME_FORMAT), + "creation_time": timestamp_util.convert_timestamp_to_datetime( + time.time(), self.GENERATED_TIME_FORMAT, local_timezone=True + ), "middle_title": "Portfolio value", "bottom_title": "Details", "strategy_config": self.backtest_result.strategy_config diff --git a/requirements.txt b/requirements.txt index 5599336..d533019 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Drakkar-Software requirements -OctoBot==2.0.12 +OctoBot==2.0.13 # manage tentacles install path appdirs==1.4.4 diff --git a/setup.py b/setup.py index d989636..8f2b333 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # from octobot_script import PROJECT_NAME, VERSION # todo figure out how not to import octobot_script.__init__.py here PROJECT_NAME = "OctoBot-Script" -VERSION = "0.0.26" # major.minor.revision +VERSION = "0.0.27" # major.minor.revision def _post_install():