Skip to content

Commit

Permalink
bump: version 0.12.1 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 10, 2024
1 parent 5d162c0 commit 99a2b22
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# AutoTrader Changelog

## v1.0.0 (2024-03-10)

### Feat

- option to instantiate ccxt broker as read only
- **Strategy**: add method for including indicators to plot
- **utilities.py**: added ccxt-download data stream object
- using logging throughout
- **utilities.py**: added logger function
- **Broker**: ccxt broker will translate native TP/SL to ccxt params
- **Broker**: added broker base class
- added ability for bots to kill instance
- **Strategy**: added strategy base class

### Fix

- **utilities.py**: ccxt global config indexing case
- pass logging config to brokers
- **AutoTrader**: handling of logger kwargs
- **AutoTrader**: logging arguments
- log handling and ccxt instrument precisions
- **Broker**: use _safe_add method to update ccxt_params
- **AutoPlot**: fixed plotting nav timezone bug
- **DataStream**: use generalised data fetch methods of AutoData

### Refactor

- simplified broker module strucutre
- major refactor of entire project
- **data**: renamed data to package_data for clarity

## v0.12.1 (2023-09-26)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion autotrader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
from .brokers.virtual import Broker as VirtualBroker

# Define version number
__version__ = "0.12.1"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.12.1"
version = "1.0.0"
tag_format = "v$version"
version_files = [
"autotrader/__init__.py:__version__",
Expand Down

0 comments on commit 99a2b22

Please sign in to comment.