Skip to content

Commit 14acee5

Browse files
authored
Merge pull request #4 from coingecko/release-please--branches--main--changes--next
release: 0.1.0-alpha.4
2 parents 07312ac + ef23972 commit 14acee5

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.3"
2+
".": "0.1.0-alpha.4"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 77
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/coingecko%2Fcoingecko-672da434b7c16835742e7051aa49aa7c953646ea384ead8b64fcbfd611c9dc13.yml
3-
openapi_spec_hash: 8c8c984aa692011f8b7b5f62d9ad3211
4-
config_hash: ee0fcee03e9f9b77015be66024d42405
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/coingecko%2Fcoingecko-43b16535b1ce6386bbad2363e03bd69351eb520637ff2ac11d18f7fb4d09ed6c.yml
3+
openapi_spec_hash: fc5235c0058e661a824821019684dc7c
4+
config_hash: da49953fdfba4fd2615028c076537ed0

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.0-alpha.4 (2025-06-02)
4+
5+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/coingecko/coingecko-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([0c72a75](https://github.com/coingecko/coingecko-python/commit/0c72a7510464ed2bc0620d1ed64b6ab40f7145b7))
10+
311
## 0.1.0-alpha.3 (2025-05-29)
412

513
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/coingecko/coingecko-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "coingecko_python"
3-
version = "0.1.0-alpha.3"
3+
version = "0.1.0-alpha.4"
44
description = "The official Python library for the coingecko API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/coingecko_python/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "coingecko_python"
4-
__version__ = "0.1.0-alpha.3" # x-release-please-version
4+
__version__ = "0.1.0-alpha.4" # x-release-please-version

src/coingecko_python/resources/onchain/networks/tokens/trades.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def get(
5555
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
5656
) -> TradeGetResponse:
5757
"""
58-
This endpoint allows you to **query the last 300 trades in the past 24 hours
59-
based on the provided token contract address on a network**
58+
This endpoint allows you to **query the last 300 trades in the past 24 hours,
59+
across all pools, based on the provided token contract address on a network**
6060
6161
Args:
6262
trade_volume_in_usd_greater_than: filter trades by trade volume in USD greater than this value Default value: 0
@@ -123,8 +123,8 @@ async def get(
123123
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
124124
) -> TradeGetResponse:
125125
"""
126-
This endpoint allows you to **query the last 300 trades in the past 24 hours
127-
based on the provided token contract address on a network**
126+
This endpoint allows you to **query the last 300 trades in the past 24 hours,
127+
across all pools, based on the provided token contract address on a network**
128128
129129
Args:
130130
trade_volume_in_usd_greater_than: filter trades by trade volume in USD greater than this value Default value: 0

0 commit comments

Comments
 (0)