Skip to content

Commit 6d57ea4

Browse files
committed
[Version] v0.0.27
1 parent 1e1d140 commit 6d57ea4

6 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.0.27] - 2025-10-18
8+
### Updated
9+
- OctoBot to 2.0.13
10+
711
## [0.0.26] - 2025-06-09
812
### Updated
913
- OctoBot to 2.0.12

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot-Script [0.0.26](https://github.com/Drakkar-Software/OctoBot-Script/tree/master/CHANGELOG.md)
1+
# OctoBot-Script [0.0.27](https://github.com/Drakkar-Software/OctoBot-Script/tree/master/CHANGELOG.md)
22
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Script.svg?logo=pypi)](https://pypi.python.org/pypi/octobot-script/)
33
[![Downloads](https://static.pepy.tech/badge/OctoBot-Script/month)](https://pepy.tech/project/octobot-script)
44
[![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/OctoBot-Script.svg?logo=docker)](https://hub.docker.com/r/drakkarsoftware/octobot-script)

octobot_script/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
PROJECT_NAME = "OctoBot-Script"
1818
AUTHOR = "Drakkar-Software"
19-
VERSION = "0.0.26" # major.minor.revision => don't forget to also update the setup.py version
19+
VERSION = "0.0.27" # major.minor.revision => don't forget to also update the setup.py version
2020

2121

2222
def _use_module_local_tentacles():

octobot_script/model/backtest_plot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ async def _get_template_data(self):
8282
"title": f"{', '.join(symbols)}",
8383
"top_title": f"{', '.join(symbols)} on {', '.join(time_frames)} from "
8484
f"{', '.join([e.capitalize() for e in exchanges])}",
85-
"creation_time": timestamp_util.convert_timestamp_to_datetime(time.time(), self.GENERATED_TIME_FORMAT),
85+
"creation_time": timestamp_util.convert_timestamp_to_datetime(
86+
time.time(), self.GENERATED_TIME_FORMAT, local_timezone=True
87+
),
8688
"middle_title": "Portfolio value",
8789
"bottom_title": "Details",
8890
"strategy_config": self.backtest_result.strategy_config

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Drakkar-Software requirements
2-
OctoBot==2.0.12
2+
OctoBot==2.0.13
33

44
# manage tentacles install path
55
appdirs==1.4.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# from octobot_script import PROJECT_NAME, VERSION
99
# todo figure out how not to import octobot_script.__init__.py here
1010
PROJECT_NAME = "OctoBot-Script"
11-
VERSION = "0.0.26" # major.minor.revision
11+
VERSION = "0.0.27" # major.minor.revision
1212

1313

1414
def _post_install():

0 commit comments

Comments
 (0)