openai/chatkit-python

Public

mirrored fromhttps://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
643a02f71cc6dd0a2513fe1aa9cb160e5afe2f70

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/release.md

33lines · modecode

1# Release process/changelog
2
3The project follows a slightly modified version of [semantic versioning](https://semver.org/spec/v2.0.0.html). The SDK is still evolving and certain backwards-incompatible changes may be released as minor versions.
4
5## Minor versions
6
7We will increase minor versions for **breaking changes** to any public interfaces. For example, going from `1.0.x` to `1.1.x` might include breaking changes.
8
9If you don't want breaking changes, we recommend pinning to `1.0.x` versions in your project.
10
11## Patch versions
12
13We will increment patch versions for non-breaking changes:
14
15- Bug fixes
16- New features
17- Changes to private interfaces
18
19## Breaking change changelog
20
21### 1.3.0
22
23- Fixed the type for the `defaultChecked` property of `Checkbox` widgets, updating it from `string` to `bool`.
24
25### 1.2.0
26
27- Updated `agents.stream_agent_response` to add annotation parts as they are received rather than adding all the annotations at the end after the response is completed.
28- Added support for rendering `container_file_citation`.
29
30### 1.1.0
31
32- `CustomSummary`, `CustomTask`, and `EntitySource` types have been updated to restrict `icon` to `IconName`.
33- All `ThreadItemConverter` methods have been updated to be asynchronous.
34