Skip to content

Commit db6cd76

Browse files
release: 1.3.1 (#839)
* chore(internal): add publish script (#838) * release: 1.3.1
1 parent 23d03a1 commit db6cd76

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 1.3.1 (2023-11-16)
4+
5+
Full Changelog: [v1.3.0...v1.3.1](https://github.com/openai/openai-python/compare/v1.3.0...v1.3.1)
6+
7+
### Chores
8+
9+
* **internal:** add publish script ([#838](https://github.com/openai/openai-python/issues/838)) ([3ea41bc](https://github.com/openai/openai-python/commit/3ea41bcede374c4e5c92d85108281637c3382e12))
10+
311
## 1.3.0 (2023-11-15)
412

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

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The API documentation can be found [here](https://platform.openai.com/docs).
1515
## Installation
1616

1717
> [!IMPORTANT]
18-
> The SDK was rewritten in v1, which was released November 6th 2023. See the [v1 migration guide](https://github.com/openai/openai-python/discussions/742), which includes scripts to automatically update your code.
18+
> The SDK was rewritten in v1, which was released November 6th 2023. See the [v1 migration guide](https://github.com/openai/openai-python/discussions/742), which includes scripts to automatically update your code.
1919
2020
```sh
2121
pip install openai
@@ -459,10 +459,6 @@ class instead of the `OpenAI` class.
459459
> The Azure API shape differs from the core API shape which means that the static types for responses / params
460460
> won't always be correct.
461461
462-
The latest release of the OpenAI Python library doesn't currently support DALL-E when used with Azure OpenAI. DALL-E with Azure OpenAI is still supported with 0.28.1. For those who can't wait for native support for DALL-E and Azure OpenAI we're providing [two code examples](https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/migration?tabs=python%2Cdalle-fix#dall-e-fix) which can be used as a workaround.
463-
464-
465-
466462
```py
467463
from openai import AzureOpenAI
468464

pyproject.toml

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

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.
22

33
__title__ = "openai"
4-
__version__ = "1.3.0" # x-release-please-version
4+
__version__ = "1.3.1" # x-release-please-version

0 commit comments

Comments
 (0)