Releases: jorijn/bitcoin-dca
Releases · jorijn/bitcoin-dca
v1.6.1
v1.6.0: Get notified via email & Telegram
Added
- Added a configuration option to prevent Bitcoin DCA from checking for newer versions
- Get notified on buy & withdraw via:
- Email;
- Telegram.
See https://bitcoin-dca.readthedocs.io/en/latest/getting-notified.html for more information about this feature.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latest
v1.5.1: Updated BL3P withdrawal fee
Changed
- BL3P changed their withdrawal fee from 30k sat to 5k sat. This change updates to code to display the correct fee.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latest
v1.5.0: Allow exporting to CSV
Added
- When you buy Bitcoin and supply
EXPORT_CSV=/location/to/file.csv
, Bitcoin-DCA will export the order information to that file in CSV format.
Please note that when you do, you need to tell Docker to mount a local file as a volume inside Bitcoin-DCA's container:
$ touch /location/to/bitcoin-dca/orders.csv # create the file if it does not exists yet
$ docker run <--usual-argments> -v /location/to/bitcoin-dca/orders.csv:/location/to/bitcoin-dca/orders.csv -e EXPORT_CSV=/location/to/bitcoin-dca/orders.csv buy 25 ... # example
More information: https://bitcoin-dca.readthedocs.io/en/latest/persistent-storage.html
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latest
v1.4.1
Added
- Bitcoin-DCA will now check for updates after executing the command and let you know if a newer version is available. This can be disabled by setting
DISABLE_VERSION_CHECK=true
.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latest
v1.4.0: Programmable output
Added
- Added an
--output
option to the buying command. This enables the user to print information about the purchase in the following formats:- YAML
- JSON
- XML
- CSV
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latest
v1.3.2
v1.3.1: Minor release for improving support
Added
- The HTTP client will now log relevant information about API calls when
DEBUG=1
is supplied in the configuration.
Changes
- Migrated away from Travis to GitHub Actions
v1.3.0: Binance support
XPUB withdrawal is enabled again for BL3P since the regulator acknowledged the view of Bitonic / BL3P.
Added
- Add Binance to the list of supported exchanges. (see #53)
Changed
- Changed the documentation to include Umbrel in the F.A.Q.
v1.2.3: Reverted to Alpine Linux v3.12 because of an issue with seccomp
Fixed
- Reverted to Alpine Linux v3.12 because of an issue with seccomp. (see #47)