From a2ae08048476aa3330dccce49cb6b9618db78d35 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Thu, 4 Jul 2024 23:47:47 +0200 Subject: [PATCH 1/2] [CCXT] update for ccxt 4.3.56 --- dev_requirements.txt | 2 +- tests/exchanges/test_coinex.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev_requirements.txt b/dev_requirements.txt index 6dc1d54..16ebd28 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -18,4 +18,4 @@ pur pylint -ccxt==4.2.95 # use to run test using a specific version of ccxt +ccxt==4.3.56 # use to run test using a specific version of ccxt diff --git a/tests/exchanges/test_coinex.py b/tests/exchanges/test_coinex.py index 0f76664..e3c5431 100644 --- a/tests/exchanges/test_coinex.py +++ b/tests/exchanges/test_coinex.py @@ -29,7 +29,7 @@ async def test_get_orders_parameters(coinex_exchange): exchange = exchanges.Coinex(coinex_exchange) await create_order_tests.create_order_mocked_test_args( exchange, - exchange_private_post_order_method_name="v1PrivatePostOrderLimit", + exchange_private_post_order_method_name="v2PrivatePostSpotOrder", exchange_request_referral_key="client_id", should_contains=True) From ae9a17a3f1e9226d53aeabac1bc89feb7c821095 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Fri, 5 Jul 2024 13:29:12 +0200 Subject: [PATCH 2/2] [Version] v1.2.25 --- CHANGELOG.md | 4 ++++ README.md | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index daab58f..8f57069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.25] - 2024-07-05 +### Updated +- [CCXT] update to ccxt 4.3.56 + ## [1.2.24] - 2024-06-16 ### Updated - Exchanges: fix api key format errors diff --git a/README.md b/README.md index 8f9a084..27b5393 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# trading-backend [1.2.24](https://github.com/Drakkar-Software/trading-backend/tree/master/CHANGELOG.md) +# trading-backend [1.2.25](https://github.com/Drakkar-Software/trading-backend/tree/master/CHANGELOG.md) [![PyPI](https://img.shields.io/pypi/v/trading-backend.svg)](https://pypi.python.org/pypi/trading-backend/) [![Downloads](https://pepy.tech/badge/trading-backend/month)](https://pepy.tech/project/trading-backend) [![Github-Action-CI](https://github.com/Drakkar-Software/trading-backend/workflows/trading-backend-CI/badge.svg)](https://github.com/Drakkar-Software/trading-backend/actions) diff --git a/setup.py b/setup.py index a028cda..a1b0045 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ from setuptools import find_packages from setuptools import setup -VERSION = "1.2.24" +VERSION = "1.2.25" PROJECT_NAME = "trading-backend" PACKAGES = find_packages(exclude=["tests"])