Skip to content

Commit d272397

Browse files
committed
chore(release): publish packages
- [email protected] - [email protected] - [email protected]+5
1 parent 543f297 commit d272397

File tree

17 files changed

+61
-14
lines changed

17 files changed

+61
-14
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
📣 Check out the [releases page](https://github.com/davidmigloz/langchain_dart/releases) or the [#announcements](https://discord.com/channels/1123158322812555295/1123250594644242534) channel on the [LangChain.dart Discord](https://discord.gg/x4qbhqecVR) server for more details.
44

5+
## 2024-10-31
6+
7+
### Changes
8+
9+
---
10+
11+
Packages with breaking changes:
12+
13+
- There are no breaking changes in this release.
14+
15+
Packages with other changes:
16+
17+
- [`openai_dart` - `v0.4.4`](#openai_dart---v044)
18+
- [`openai_realtime_dart` - `v0.0.3`](#openai_realtime_dart---v003)
19+
- [`langchain_openai` - `v0.7.2+5`](#langchain_openai---v0725)
20+
21+
Packages with dependency updates only:
22+
23+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
24+
25+
- `langchain_openai` - `v0.7.2+5`
26+
27+
---
28+
29+
#### `openai_dart` - `v0.4.4`
30+
31+
- **FEAT**: Add five new voice types to Chat Completions API in openai_dart ([#594](https://github.com/davidmigloz/langchain_dart/issues/594)). ([543f2977](https://github.com/davidmigloz/langchain_dart/commit/543f2977ea1e6dd6e49fa4a2ae9a084ae525003e))
32+
33+
#### `openai_realtime_dart` - `v0.0.3`
34+
35+
- **FEAT**: Add five new voice types in openai_realtime_dart and minor improvements ([#593](https://github.com/davidmigloz/langchain_dart/issues/593)). ([6d0c8d3f](https://github.com/davidmigloz/langchain_dart/commit/6d0c8d3fceaab9d3eac7c5265b1e8b50deef9cc4))
36+
- **DOCS**: Update openai_realtime_dart README.md. ([7e9e1393](https://github.com/davidmigloz/langchain_dart/commit/7e9e139315b31308817fc71439feceb705d06ec2))
37+
38+
539
## 2024-10-29
640

741
### Changes

examples/browser_summarizer/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies:
1515
js: ^0.7.1
1616
langchain: ^0.7.7+1
1717
langchain_community: 0.3.2+2
18-
langchain_openai: ^0.7.2+4
18+
langchain_openai: ^0.7.2+5
1919
shared_preferences: ^2.3.0
2020

2121
flutter:

examples/docs_examples/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ dependencies:
1414
langchain_google: ^0.6.4+1
1515
langchain_mistralai: ^0.2.3+1
1616
langchain_ollama: ^0.3.2+1
17-
langchain_openai: ^0.7.2+4
17+
langchain_openai: ^0.7.2+5

examples/hello_world_backend/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ environment:
88

99
dependencies:
1010
langchain: ^0.7.7+1
11-
langchain_openai: ^0.7.2+4
11+
langchain_openai: ^0.7.2+5
1212
shelf: ^1.4.2
1313
shelf_router: ^1.1.4

examples/hello_world_cli/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ environment:
88

99
dependencies:
1010
langchain: ^0.7.7+1
11-
langchain_openai: ^0.7.2+4
11+
langchain_openai: ^0.7.2+5

examples/hello_world_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
langchain_google: ^0.6.4+1
1717
langchain_mistralai: ^0.2.3+1
1818
langchain_ollama: ^0.3.2+1
19-
langchain_openai: ^0.7.2+4
19+
langchain_openai: ^0.7.2+5
2020

2121
flutter:
2222
uses-material-design: true

packages/langchain/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ dependencies:
2626
dev_dependencies:
2727
test: ^1.25.8
2828
langchain_community: ^0.3.2+2
29-
langchain_openai: ^0.7.2+4
29+
langchain_openai: ^0.7.2+5
3030
langchain_ollama: ^0.3.2+1

packages/langchain_chroma/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ dev_dependencies:
2727
test: ^1.25.8
2828
langchain: ^0.7.7+1
2929
langchain_community: 0.3.2+2
30-
langchain_openai: ^0.7.2+4
30+
langchain_openai: ^0.7.2+5

packages/langchain_community/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131

3232
dev_dependencies:
3333
build_runner: ^2.4.11
34-
langchain_openai: ^0.7.2+4
34+
langchain_openai: ^0.7.2+5
3535
objectbox_generator: ^4.0.1
3636
test: ^1.25.8
3737

packages/langchain_openai/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
---
44

5+
## 0.7.2+5
6+
7+
- Update a dependency to the latest release.
8+
59
## 0.7.2+4
610

711
- Update a dependency to the latest release.

0 commit comments

Comments
 (0)