Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.4"
".": "0.2.5"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 34
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/linq%2Flinq-api-v3-05741656c70e4c968289c09c4e194c20850f16357952836542a3dca9717198de.yml
openapi_spec_hash: c367f8c422a67e5b3dc3a987d37c2cd2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/linq%2Flinq-api-v3-36db2d614fc8cc86744b1677db6c3217c273fc366a40fd98fbc1034febb5ad36.yml
openapi_spec_hash: aab0034296b3ef4681f3ab8a8a8f1249
config_hash: be5410c6c4d8f36a7cd93c8950bc90d6
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.5 (2026-04-20)

Full Changelog: [v0.2.4...v0.2.5](https://github.com/linq-team/linq-python/compare/v0.2.4...v0.2.5)

### Documentation

* **api:** document edit message limits (BUG-7607) ([f7838ae](https://github.com/linq-team/linq-python/commit/f7838ae0fd6155e6db6cc501798c7c7665a63631))

## 0.2.4 (2026-04-18)

Full Changelog: [v0.2.3...v0.2.4](https://github.com/linq-team/linq-python/compare/v0.2.3...v0.2.4)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "linq-python"
version = "0.2.4"
version = "0.2.5"
description = "The official Python library for the linq-api-v3 API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/linq/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "linq"
__version__ = "0.2.4" # x-release-please-version
__version__ = "0.2.5" # x-release-please-version
6 changes: 6 additions & 0 deletions src/linq/resources/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ def update(
"""
Edit the text content of a specific part of a previously sent message.

**Note:** A message can be edited up to 5 times, and only within 15 minutes of
when it was originally sent.

Args:
text: New text content for the message part

Expand Down Expand Up @@ -405,6 +408,9 @@ async def update(
"""
Edit the text content of a specific part of a previously sent message.

**Note:** A message can be edited up to 5 times, and only within 15 minutes of
when it was originally sent.

Args:
text: New text content for the message part

Expand Down
Loading