Skip to content

Commit 1a55bc6

Browse files
authored
bump version 0.88.0 (#1947)
- **Bump version to 0.88.0** - **bump 0.88.0** <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Bump version from 0.87.2 to 0.88.0 across multiple files and configurations, updating changelogs and package files. > > - **Version Bump**: > - Update version from `0.87.2` to `0.88.0` in `Cargo.lock`, `Cargo.toml`, `lib.go`, `pyproject.toml`, `baml.gemspec`, `package.json`, and `baml` files. > - Update version in `tools/versions` configuration files for `engine.cfg`, `go.cfg`, `integ-tests.cfg`, `python.cfg`, `ruby.cfg`, `typescript.cfg`, and `vscode.cfg`. > - **Changelog**: > - Add entry for version `0.88.0` in `CHANGELOG.md` and `changelog.mdx` with documentation, features, and bug fixes. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup> for e853aca. You can [customize](https://app.ellipsis.dev/BoundaryML/settings/summaries) this summary. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
1 parent fe93ad0 commit 1a55bc6

File tree

28 files changed

+95
-65
lines changed

28 files changed

+95
-65
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [0.88.0](https://github.com/boundaryml/baml/compare/0.87.2..0.88.0) - 2025-05-14
6+
7+
### Documentation
8+
9+
- **(tools)** add string literal examples (#1939) - ([b037124](https://github.com/boundaryml/baml/commit/b037124a64d5951b5d96ae8b237006fa3c780151)) - Elijas Dapšauskas
10+
11+
### Features
12+
- Support openai audio input (#1940) - ([87ed2b1](https://github.com/boundaryml/baml/commit/87ed2b1454ddf02d9e4950d0c72b12a2b04f848e)) - aaronvg
13+
- add HookData for baml react hooks, as a utility to get nonnullable types (#1925) - ([6501ad2](https://github.com/boundaryml/baml/commit/6501ad20985a426d1ae3952a24062595e935de53)) - Chris Watts
14+
- [Python] Support windows arm64 (#1944) - ([ef9e8be](https://github.com/boundaryml/baml/commit/ef9e8be2f59b0b1280842ff53963ba57f9c86275)) - aaronvg
15+
16+
### Bugs
17+
- Maintain field order when rendering class in Python (#1931) - ([46921b7](https://github.com/boundaryml/baml/commit/46921b7ad9e0a5766f02828b267e08ec6b48ef8b)) - Antonio Sarosi
18+
- [Go] Fix Union JSON serialization (#1936) - ([6d4eb2b](https://github.com/boundaryml/baml/commit/6d4eb2b14451137c950e931d39d072b1f79ba254)) - Todd Berman
19+
520
## [0.87.2](https://github.com/boundaryml/baml/compare/0.87.1..0.87.2) - 2025-05-08
621

722
### Bugfixes

engine/Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ tokio = { version = "1", default-features = false, features = [
118118
] }
119119

120120
[workspace.package]
121-
version = "0.87.2"
121+
version = "0.88.0"
122122
authors = ["Boundary <contact@boundaryml.com>"]
123123

124124
description = "BAML Toolchain"

engine/language_client_go/baml_go/lib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
import "C"
3434

3535
const (
36-
VERSION = "0.87.2"
36+
VERSION = "0.88.0"
3737
githubRepo = "boundaryml/baml"
3838
bamlCacheDirEnvVar = "BAML_CACHE_DIR"
3939
bamlLibraryPathEnv = "BAML_LIBRARY_PATH"

engine/language_client_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "baml-py"
3-
version = "0.87.2"
3+
version = "0.88.0"
44
description = "BAML python bindings (pyproject.toml)"
55
readme = "README.md"
66
authors = [{ "name" = "Boundary", "email" = "contact@boundaryml.com" }]

engine/language_client_ruby/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
baml (0.87.2)
4+
baml (0.88.0)
55

66
GEM
77
remote: https://rubygems.org/

engine/language_client_ruby/baml.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "baml"
5-
spec.version = "0.87.2"
5+
spec.version = "0.88.0"
66
spec.authors = ["BoundaryML"]
77
spec.email = ["contact@boundaryml.com"]
88

engine/language_client_typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@boundaryml/baml",
3-
"version": "0.87.2",
3+
"version": "0.88.0",
44
"description": "BAML typescript bindings (package.json)",
55
"repository": {
66
"type": "git",

fern/pages/changelog.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ title: Changelog
44

55
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
66

7+
## [0.88.0](https://github.com/boundaryml/baml/compare/0.87.2..0.88.0) - 2025-05-14
8+
9+
### Documentation
10+
11+
- **(tools)** add string literal examples (#1939) - ([b037124](https://github.com/boundaryml/baml/commit/b037124a64d5951b5d96ae8b237006fa3c780151)) - Elijas Dapšauskas
12+
13+
### Features
14+
- Support openai audio input (#1940) - ([87ed2b1](https://github.com/boundaryml/baml/commit/87ed2b1454ddf02d9e4950d0c72b12a2b04f848e)) - aaronvg
15+
- add HookData for baml react hooks, as a utility to get nonnullable types (#1925) - ([6501ad2](https://github.com/boundaryml/baml/commit/6501ad20985a426d1ae3952a24062595e935de53)) - Chris Watts
16+
- [Python] Support windows arm64 (#1944) - ([ef9e8be](https://github.com/boundaryml/baml/commit/ef9e8be2f59b0b1280842ff53963ba57f9c86275)) - aaronvg
17+
18+
### Bugs
19+
- Maintain field order when rendering class in Python (#1931) - ([46921b7](https://github.com/boundaryml/baml/commit/46921b7ad9e0a5766f02828b267e08ec6b48ef8b)) - Antonio Sarosi
20+
- [Go] Fix Union JSON serialization (#1936) - ([6d4eb2b](https://github.com/boundaryml/baml/commit/6d4eb2b14451137c950e931d39d072b1f79ba254)) - Todd Berman
21+
722
## [0.87.2](https://github.com/boundaryml/baml/compare/0.87.1..0.87.2) - 2025-05-08
823

924
### Bugfixes

integ-tests/baml_src/generators.baml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
generator lang_python {
22
output_type python/pydantic
33
output_dir "../python"
4-
version "0.87.2"
4+
version "0.88.0"
55
}
66

77
generator lang_typescript {
88
output_type typescript
99
output_dir "../typescript"
10-
version "0.87.2"
10+
version "0.88.0"
1111
}
1212

1313

1414
generator lang_typescript_esm {
1515
output_type typescript
1616
output_dir "../typescript-esm"
17-
version "0.87.2"
17+
version "0.88.0"
1818
module_format esm
1919
}
2020

2121

2222
generator lang_typescript_react {
2323
output_type typescript/react
2424
output_dir "../react"
25-
version "0.87.2"
25+
version "0.88.0"
2626
}
2727

2828
generator lang_ruby {
2929
output_type ruby/sorbet
3030
output_dir "../ruby"
31-
version "0.87.2"
31+
version "0.88.0"
3232
}
3333

3434
generator openapi {
3535
output_type rest/openapi
3636
output_dir "../openapi"
37-
version "0.87.2"
37+
version "0.88.0"
3838
on_generate "rm .gitignore"
3939
}
4040

4141
generator lang_go {
4242
output_type go
4343
output_dir "../go"
44-
version "0.87.2"
44+
version "0.88.0"
4545
client_package_name "example.com/integ-tests"
4646
on_generate "gofmt -w ."
4747
}

integ-tests/go/baml_client/inlinedbaml.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integ-tests/python/baml_client/__init__.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)