Skip to content

Commit fb017dc

Browse files
release: 6.4.0 (#109)
* feat: Token Prop Description Change * release: 6.4.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 39d89c1 commit fb017dc

9 files changed

Lines changed: 27 additions & 11 deletions

File tree

.release-please-manifest.json

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

.stats.yml

Lines changed: 2 additions & 2 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/courier%2Fcourier-7f8623bc0783065cb0109d10b6b774a372530343cd9fed253a93a2f451cb9a7d.yml
3-
openapi_spec_hash: 00cda0114b95af8693416ce26c4f8499
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-d643c34df4e6c0ba17b85adf379fddaf20ca14211e49fe9715eeb19e64d42556.yml
3+
openapi_spec_hash: 63b45d459907b1e30baeefcd3e552da7
44
config_hash: 1dfe9dc0d55d828e116bd0f89061c3c5

CHANGELOG.md

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

3+
## 6.4.0 (2025-11-08)
4+
5+
Full Changelog: [v6.4.0-alpha20...v6.4.0](https://github.com/trycourier/courier-python/compare/v6.4.0-alpha20...v6.4.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([b16bac2](https://github.com/trycourier/courier-python/commit/b16bac2553d106e3ddc040bdfe3beac79f8c0408))
10+
* **api:** manual updates ([cd9ed1b](https://github.com/trycourier/courier-python/commit/cd9ed1b563215b6896734669bd041c091f0db29a))
11+
* Token Prop Description Change ([66b3845](https://github.com/trycourier/courier-python/commit/66b3845cce21eca402dac7348ce9017fa8a55255))
12+
13+
14+
### Chores
15+
16+
* configure new SDK language ([f004f07](https://github.com/trycourier/courier-python/commit/f004f07aabba46f78d7834c62b4ef1ce4ec11759))
17+
* **internal:** codegen related update ([6fb395b](https://github.com/trycourier/courier-python/commit/6fb395bb3062bb749130c8f6345fbfcd693d2584))
18+
319
## 6.4.0-alpha20 (2025-11-04)
420

521
Full Changelog: [v6.4.0-alpha19...v6.4.0-alpha20](https://github.com/trycourier/courier-python/compare/v6.4.0-alpha19...v6.4.0-alpha20)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The REST API documentation can be found on [www.courier.com](https://www.courier
1717

1818
```sh
1919
# install from PyPI
20-
pip install --pre trycourier
20+
pip install trycourier
2121
```
2222

2323
## Usage
@@ -85,7 +85,7 @@ You can enable this by installing `aiohttp`:
8585

8686
```sh
8787
# install from PyPI
88-
pip install --pre trycourier[aiohttp]
88+
pip install trycourier[aiohttp]
8989
```
9090

9191
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:

pyproject.toml

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

src/courier/_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__ = "courier"
4-
__version__ = "6.4.0-alpha20" # x-release-please-version
4+
__version__ = "6.4.0" # x-release-please-version

src/courier/resources/users/tokens.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def add_single(
253253
expiry_date: ISO 8601 formatted date the token expires. Defaults to 2 months. Set to false to
254254
disable expiration.
255255
256-
properties: Properties sent to the provider along with the token
256+
properties: Properties about the token.
257257
258258
tracking: Tracking information about the device the token came from.
259259
@@ -518,7 +518,7 @@ async def add_single(
518518
expiry_date: ISO 8601 formatted date the token expires. Defaults to 2 months. Set to false to
519519
disable expiration.
520520
521-
properties: Properties sent to the provider along with the token
521+
properties: Properties about the token.
522522
523523
tracking: Tracking information about the device the token came from.
524524

src/courier/types/users/token_add_single_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class TokenAddSingleParams(TypedDict, total=False):
2828
"""
2929

3030
properties: object
31-
"""Properties sent to the provider along with the token"""
31+
"""Properties about the token."""
3232

3333
tracking: Optional[Tracking]
3434
"""Tracking information about the device the token came from."""

src/courier/types/users/user_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class UserToken(BaseModel):
5858
"""
5959

6060
properties: Optional[object] = None
61-
"""Properties sent to the provider along with the token"""
61+
"""Properties about the token."""
6262

6363
tracking: Optional[Tracking] = None
6464
"""Tracking information about the device the token came from."""

0 commit comments

Comments
 (0)