Skip to content

Commit 2a678e3

Browse files
release: 1.25.2 (#1394)
1 parent aed1e43 commit 2a678e3

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

Diff for: .release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.25.1"
2+
".": "1.25.2"
33
}

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.25.2 (2024-05-05)
4+
5+
Full Changelog: [v1.25.1...v1.25.2](https://github.com/openai/openai-python/compare/v1.25.1...v1.25.2)
6+
7+
### Documentation
8+
9+
* **readme:** fix misleading timeout example value ([#1393](https://github.com/openai/openai-python/issues/1393)) ([3eba8e7](https://github.com/openai/openai-python/commit/3eba8e7573ec1bf4231a304c8eabc8a8d077f46d))
10+
311
## 1.25.1 (2024-05-02)
412

513
Full Changelog: [v1.25.0...v1.25.1](https://github.com/openai/openai-python/compare/v1.25.0...v1.25.1)

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ client = OpenAI(
424424
)
425425

426426
# Override per-request:
427-
client.with_options(timeout=5 * 1000).chat.completions.create(
427+
client.with_options(timeout=5.0).chat.completions.create(
428428
messages=[
429429
{
430430
"role": "user",

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openai"
3-
version = "1.25.1"
3+
version = "1.25.2"
44
description = "The official Python library for the openai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

Diff for: src/openai/_version.py

+1-1
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__ = "openai"
4-
__version__ = "1.25.1" # x-release-please-version
4+
__version__ = "1.25.2" # x-release-please-version

0 commit comments

Comments
 (0)