Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4f1e249
Merge pull request #12452 from freqtrade/new_release
xmatthias Oct 31, 2025
8e031a0
Merge branch 'stable' into new_release
xmatthias Nov 29, 2025
3b55e57
chore: bump version to 2025.11
xmatthias Nov 29, 2025
6eba5ee
Merge pull request #12562 from freqtrade/new_release
xmatthias Nov 30, 2025
eabb7c9
test: simplify some stoploss test setups
xmatthias Dec 10, 2025
fc5680d
test: further test simplifications
xmatthias Dec 11, 2025
043574f
fix: support binance algo orders
xmatthias Dec 12, 2025
c9ed79d
chore: bump ccxt to 4.5.27
xmatthias Dec 12, 2025
2851708
chore: bump version to 2025.11.1
xmatthias Dec 14, 2025
66235f3
fix: improve binance stoploss "triggered" behavior
xmatthias Dec 16, 2025
1811f95
fix: allow set-leverage failures on followup orders
xmatthias Dec 15, 2025
5fdc8ac
test: switch to BTC/USDC in tests for now
xmatthias Dec 4, 2025
f002ce6
chore: bump version to 2025.11.2
xmatthias Dec 18, 2025
0beb76c
fix: function signature mismatch
xmatthias Dec 15, 2025
8205cb2
chore: bump dockerfile base from bookworm to trixie
xmatthias Dec 28, 2025
d454a10
chore(deps): bump numpy from 2.3.5 to 2.4.0
dependabot[bot] Dec 29, 2025
7085103
chore(deps): bump humanize from 4.14.0 to 4.15.0
dependabot[bot] Dec 29, 2025
d5ac8a5
test: update test for new humanize behavior
xmatthias Dec 29, 2025
84244e7
Merge pull request #12669 from freqtrade/dependabot/pip/develop/numpy…
xmatthias Dec 29, 2025
383b305
Merge pull request #12671 from freqtrade/dependabot/pip/develop/human…
xmatthias Dec 29, 2025
31341af
Merge branch 'stable' into develop
xmatthias Dec 29, 2025
5f12c81
chore: bump version to 2026.1-dev
xmatthias Dec 29, 2025
6d1e4d8
Merge pull request #12665 from freqtrade/ci/docker_trixie
xmatthias Dec 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.11-slim-bookworm AS base
FROM python:3.13.11-slim-trixie AS base

# Setup env
ENV LANG=C.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion freqtrade/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Freqtrade bot"""

__version__ = "2025.12-dev"
__version__ = "2026.1-dev"

if "dev" in __version__:
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion ft_client/freqtrade_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from freqtrade_client.ft_rest_client import FtRestClient


__version__ = "2025.12-dev"
__version__ = "2026.1-dev"

if "dev" in __version__:
from pathlib import Path
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy==2.3.5
numpy==2.4.0
pandas==2.3.3
bottleneck==1.6.0
numexpr==2.14.1
Expand All @@ -14,7 +14,7 @@ SQLAlchemy==2.0.45
python-telegram-bot==22.5
# can't be hard-pinned due to telegram-bot pinning httpx with ~
httpx>=0.24.1
humanize==4.14.0
humanize==4.15.0
cachetools==6.2.4
requests==2.32.5
urllib3==2.6.2
Expand Down
2 changes: 1 addition & 1 deletion tests/util/test_datetime_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_dt_humanize() -> None:
assert dt_humanize_delta(dt_now() - timedelta(minutes=50)) == "50 minutes ago"
assert dt_humanize_delta(dt_now() - timedelta(hours=16)) == "16 hours ago"
assert dt_humanize_delta(dt_now() - timedelta(hours=16, minutes=30)) == "16 hours ago"
assert dt_humanize_delta(dt_now() - timedelta(days=16, hours=10, minutes=25)) == "16 days ago"
assert dt_humanize_delta(dt_now() - timedelta(days=16, hours=10, minutes=25)) == "a month ago"
assert dt_humanize_delta(dt_now() - timedelta(minutes=50)) == "50 minutes ago"


Expand Down
Loading