Skip to content

Commit 3d1ef59

Browse files
authoredSep 3, 2024
Prepare 2.0.0-beta.11 release (#208)
1 parent cc9169a commit 3d1ef59

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed
 

‎CHANGELOG.md

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
# Release History
22

3-
## 2.0.0-beta.11 (Unreleased)
3+
## 2.0.0-beta.11 (2024-09-03)
44

55
### Features Added
66

7-
- Added the following model factory (a static class that can be used to instantiate OpenAI models for mocking in non-live test scenarios):
8-
- `OpenAIChatModelFactory` in the `OpenAI.Chat` namespace
7+
- Added the `OpenAIChatModelFactory` in the `OpenAI.Chat` namespace (a static class that can be used to instantiate OpenAI models for mocking in non-live test scenarios). ([79014ab](https://github.com/openai/openai-dotnet/commit/79014abc01a00e13d5a334d3f6529ed590b8ee98))
98

109
### Breaking Changes
1110

12-
- Updated fine-tuning pagination methods `GetJobs`, `GetEvents`, and `GetJobCheckpoints` to return `IEnumerable<ClientResult>` instead of `ClientResult`. (commit_hash)
13-
- Updated the batching pagination method `GetBatches` to return `IEnumerable<ClientResult>` instead of `ClientResult`. (commit_hash)
14-
- Changed `GeneratedSpeechVoice` from an enum to an "extensible enum". (commit_hash)
15-
- Changed `GeneratedSpeechFormat` from an enum to an "extensible enum". (commit_hash)
16-
- Renamed `SpeechGenerationOptions`'s `Speed` property to `SpeedRatio`. (commit_hash)
11+
- Updated fine-tuning pagination methods `GetJobs`, `GetEvents`, and `GetJobCheckpoints` to return `IEnumerable<ClientResult>` instead of `ClientResult`. ([5773292](https://github.com/openai/openai-dotnet/commit/57732927575c6c48f30bded0afb9f5b16d4f30da))
12+
- Updated the batching pagination method `GetBatches` to return `IEnumerable<ClientResult>` instead of `ClientResult`. ([5773292](https://github.com/openai/openai-dotnet/commit/57732927575c6c48f30bded0afb9f5b16d4f30da))
13+
- Changed `GeneratedSpeechVoice` from an enum to an "extensible enum". ([79014ab](https://github.com/openai/openai-dotnet/commit/79014abc01a00e13d5a334d3f6529ed590b8ee98))
14+
- Changed `GeneratedSpeechFormat` from an enum to an "extensible enum". ([cc9169a](https://github.com/openai/openai-dotnet/commit/cc9169ad2ff92bb7312eed3b7e64e45da5da1d18))
15+
- Renamed `SpeechGenerationOptions`'s `Speed` property to `SpeedRatio`. ([cc9169a](https://github.com/openai/openai-dotnet/commit/cc9169ad2ff92bb7312eed3b7e64e45da5da1d18))
1716

1817
### Bugs Fixed
1918

20-
- Corrected an internal deserialization issue that caused recent updates to Assistants `file_search` to fail when streaming a run. Strongly typed support for `ranking_options` is not included but will arrive soon. (commit_hash)
21-
- Mitigated a .NET runtime issue that prevented `ChatResponseFormat` from serializing correct on targets including Unity. (commit_hash)
19+
- Corrected an internal deserialization issue that caused recent updates to Assistants `file_search` to fail when streaming a run. Strongly typed support for `ranking_options` is not included but will arrive soon. ([cc9169a](https://github.com/openai/openai-dotnet/commit/cc9169ad2ff92bb7312eed3b7e64e45da5da1d18))
20+
- Mitigated a .NET runtime issue that prevented `ChatResponseFormat` from serializing correct on targets including Unity. ([cc9169a](https://github.com/openai/openai-dotnet/commit/cc9169ad2ff92bb7312eed3b7e64e45da5da1d18))
2221

2322
### Other Changes
2423

25-
- Reverted the removal of the version path parameter "v1" from the default endpoint URL. (commit_hash)
24+
- Reverted the removal of the version path parameter "v1" from the default endpoint URL. ([583e9f6](https://github.com/openai/openai-dotnet/commit/583e9f6f519feeee0e2907e80bf7d5bf8302d93f))
2625
- Added the `Experimental` attribute to the following APIs:
27-
- All public APIs in the `OpenAI.Assistants` namespace. (commit_hash)
28-
- All public APIs in the `OpenAI.VectorStores` namespace. (commit_hash)
29-
- All public APIs in the `OpenAI.Batch` namespace. (commit_hash)
30-
- All public APIs in the `OpenAI.FineTuning` namespace. (commit_hash)
31-
- The `ChatCompletionOptions.Seed` property. (commit_hash)
26+
- All public APIs in the `OpenAI.Assistants` namespace. ([79014ab](https://github.com/openai/openai-dotnet/commit/79014abc01a00e13d5a334d3f6529ed590b8ee98))
27+
- All public APIs in the `OpenAI.VectorStores` namespace. ([79014ab](https://github.com/openai/openai-dotnet/commit/79014abc01a00e13d5a334d3f6529ed590b8ee98))
28+
- All public APIs in the `OpenAI.Batch` namespace. ([0f5e024](https://github.com/openai/openai-dotnet/commit/0f5e0249cffd42755fc9a820e65fb025fd4f986c))
29+
- All public APIs in the `OpenAI.FineTuning` namespace. ([0f5e024](https://github.com/openai/openai-dotnet/commit/0f5e0249cffd42755fc9a820e65fb025fd4f986c))
30+
- The `ChatCompletionOptions.Seed` property. ([0f5e024](https://github.com/openai/openai-dotnet/commit/0f5e0249cffd42755fc9a820e65fb025fd4f986c))
3231

3332
## 2.0.0-beta.10 (2024-08-26)
3433

‎src/OpenAI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PackageTags>OpenAI</PackageTags>
66

77
<VersionPrefix>2.0.0</VersionPrefix>
8-
<VersionSuffix>beta.10</VersionSuffix>
8+
<VersionSuffix>beta.11</VersionSuffix>
99

1010
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
1111
<LangVersion>latest</LangVersion>

0 commit comments

Comments
 (0)