Skip to content

Commit

Permalink
Showing 5 changed files with 11 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,11 @@ 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.0-beta10] - 2021-06-05
### Fixed
- [Websockets] Properly handle websockets errors
- [Loggers] Properly map default logging arguments

## [0.4.0-beta9] - 2021-04-31
### Added
- [WebInterface] Advanced OctoBot statistics
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OctoBot [0.4.0-beta9](https://github.com/Drakkar-Software/OctoBot/tree/dev/CHANGELOG.md)
# OctoBot [0.4.0-beta10](https://github.com/Drakkar-Software/OctoBot/tree/dev/CHANGELOG.md)
[![PyPI](https://img.shields.io/pypi/v/OctoBot.svg)](https://pypi.python.org/pypi/OctoBot/)
[![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://hub.docker.com/r/drakkarsoftware/octobot)
3 changes: 1 addition & 2 deletions octobot/cli.py
Original file line number Diff line number Diff line change
@@ -147,8 +147,7 @@ def _validate_config(config, logger):


def _repair_with_default_profile(config, logger):
logger.error("OctoBot can't start without a valid profile configuration. Installing default profiles...")
commands.run_tentacles_install_or_update(config)
logger.error("OctoBot can't start without a valid profile configuration. Selecting default profile ...")
configuration_manager.set_default_profile(config)
config.load_profiles_if_possible_and_necessary()

2 changes: 1 addition & 1 deletion octobot/constants.py
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
SHORT_VERSION = "0.4.0" # major.minor.revision
PATCH_VERSION = "" # patch : pX
VERSION_DEV_PHASE = "b" # alpha : a / beta : b / release candidate : rc
VERSION_PHASE = "9" # XX
VERSION_PHASE = "10" # XX
VERSION = f"{SHORT_VERSION}{VERSION_DEV_PHASE}{VERSION_PHASE}"
LONG_VERSION = f"{SHORT_VERSION}{PATCH_VERSION}{VERSION_DEV_PHASE}{VERSION_PHASE}"

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
cython==0.29.23

# Drakkar-Software requirements
OctoBot-Commons==1.6.3
OctoBot-Trading==1.12.17
OctoBot-Commons==1.6.4
OctoBot-Trading==1.12.19
OctoBot-Evaluators==1.6.16
OctoBot-Tentacles-Manager==2.5.1
OctoBot-Tentacles-Manager==2.5.2
OctoBot-Services==1.2.19
OctoBot-Backtesting==1.6.17
Async-Channel==2.0.10

0 comments on commit 8197704

Please sign in to comment.