diff --git a/CHANGELOG.md b/CHANGELOG.md index 51bd61d6..9b39b442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ ## Latest changes +## 0.6.6.0 + +Normalize contract addresses: no matter where you've got contract address from, it should correctly detect payments now. + +Upgrade is recommended for everyone accepting contract payment as before that fix payment processing maybe didn't work for you. + +Please re-save all existing wallets with contracts for them to be normalized. + +Added more bep20 tokens to pre-defined list + +Better exchange rate normalization: it should now correctly work for coins with low exchange rates and in some edge cases + +SmartBCH support + +Fix BCH payment processing + +Better handling for long currency names in checkout page + ## 0.6.5.1 Fix BNB support diff --git a/api/constants.py b/api/constants.py index c21d896e..ced98f82 100644 --- a/api/constants.py +++ b/api/constants.py @@ -2,7 +2,7 @@ from bitcart import COINS as _COINS -VERSION = "0.6.5.1" # Version, used for openapi schemas and update checks +VERSION = "0.6.6.0" # Version, used for openapi schemas and update checks WEBSITE = "https://bitcartcc.com" # BitcartCC official site GIT_REPO_URL = "https://github.com/bitcartcc/bitcart" # BitcartCC github repository DOCKER_REPO_URL = "https://github.com/bitcartcc/bitcart-docker" # BitcartCC Docker Packaging repository diff --git a/requirements/deterministic/web.txt b/requirements/deterministic/web.txt index a526db42..46cb37a6 100644 --- a/requirements/deterministic/web.txt +++ b/requirements/deterministic/web.txt @@ -160,9 +160,9 @@ bcrypt==3.2.0 \ # via # paramiko # passlib -bitcart==1.9.1.1 \ - --hash=sha256:247c0b493ad587d5ea174c983ad2e8b73bf433c7714dec51960f146d973961d8 \ - --hash=sha256:f2fe75696f13a121b4c63dc5f51d096451400040b73ae0339202634c05cf4334 +bitcart==1.9.2.0 \ + --hash=sha256:5124d3653f5185f4b87cb85bd4b6d306a9b64530b3e80085e24c492bb8601ebb \ + --hash=sha256:a47ed437171b173521dfd8e12eb4c29628249086ef5c5ea0f3604be87d595ab5 # via -r requirements/web.txt certifi==2021.10.8 \ --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \