Skip to content

Commit 58310f0

Browse files
authored
bump version to 0.210.0 (#2549)
## [0.210.0](https://github.com/boundaryml/baml/compare/0.209.0..0.210.0) - 2025-09-30 ### Bug Fixes - Fix document name for PDF inference on Bedrock (#2545) - ([109612a](109612a)) - Greg Hale - Fix regression in union streaming codegen (#2533) - ([0a7b396](0a7b396)) - Greg Hale - Jetbrains: avoid using deprecated java 18 api (#2541) - ([ec4f339](ec4f339)) - Sam Lijin ### Features - Enable "Citations" PDF analysis model for Claude on Bedrock (#2547) - ([219e53f](219e53f)) - Greg Hale - Add type narrowing for discriminated unions in Jinja (#2539) - ([7a395a9](87e95fe)) - Antonio Sarosi ### Docs - Document BAML tag setting and retrieval (#2534) - ([d90e7a3](d90e7a3)) - aaronvg
1 parent 219e53f commit 58310f0

File tree

30 files changed

+112
-82
lines changed

30 files changed

+112
-82
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+
6+
## [0.210.0](https://github.com/boundaryml/baml/compare/0.209.0..0.210.0) - 2025-09-30
7+
8+
### Bug Fixes
9+
- Fix document name for PDF inference on Bedrock (#2545) - ([109612a](https://github.com/BoundaryML/baml/commit/109612ace4d5a1d4a37a8b392e55dc6bfb74997b)) - Greg Hale
10+
- Fix regression in union streaming codegen (#2533) - ([0a7b396](https://github.com/BoundaryML/baml/commit/0a7b39652a940de679025c6044bc4ed51812b5a3)) - Greg Hale
11+
- Jetbrains: avoid using deprecated java 18 api (#2541) - ([ec4f339](https://github.com/BoundaryML/baml/commit/ec4f339b628e34d2e6d0dd04df685929149830ed)) - Sam Lijin
12+
13+
### Features
14+
- Enable "Citations" PDF analysis model for Claude on Bedrock (#2547) - ([219e53f](https://github.com/BoundaryML/baml/commit/219e53f9b3d9f538350c433b26ff68d95ae8324e)) - Greg Hale
15+
- Add type narrowing for discriminated unions in Jinja (#2539) - ([7a395a9](https://github.com/BoundaryML/baml/commit/87e95fe818b596ab2580cd87fd4a26a32a058dd8)) - Antonio Sarosi
16+
17+
### Docs
18+
- Document BAML tag setting and retrieval (#2534) - ([d90e7a3](https://github.com/BoundaryML/baml/commit/d90e7a35c6e43e308ab841b24e69b635ef514f8f)) - aaronvg
19+
520
## [0.209.0](https://github.com/boundaryml/baml/compare/0.208.5..0.209.0) - 2025-09-28
621

722

engine/Cargo.lock

Lines changed: 36 additions & 36 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
@@ -182,7 +182,7 @@ web-sys = { version = "0.3.78", features = [
182182
web-time = "1.1.0"
183183

184184
[workspace.package]
185-
version = "0.209.0"
185+
version = "0.210.0"
186186
authors = ["Boundary <[email protected]>"]
187187

188188
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.209.0"
36+
VERSION = "0.210.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.209.0"
3+
version = "0.210.0"
44
description = "BAML python bindings (pyproject.toml)"
55
readme = "README.md"
66
authors = [{ "name" = "Boundary", "email" = "[email protected]" }]

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.209.0"
5+
spec.version = "0.210.0"
66
spec.authors = ["BoundaryML"]
77
spec.email = ["[email protected]"]
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.209.0",
3+
"version": "0.210.0",
44
"description": "BAML typescript bindings (package.json)",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)