Skip to content

Commit 16522c3

Browse files
authored
bump version 0.218.1 (#3039)
- **Bump version to 0.218.1** - **bump version** <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Releases `0.218.1`. > > - Updates versions across the Rust workspace (`Cargo.toml`/`Cargo.lock`), language clients (Go/Python/Ruby/TypeScript), Zed extension (`engine/zed/*`), integ-test generators, and docs (`fern/pages/changelog.mdx`, `CHANGELOG.md`) > - Changelogs include bug fixes (streaming retries, Zed extension working again, proxy toggling error message, HMR test, VS Code CORS proxy enable, Vertex AI credential parsing) and a feature (support `--turbo` build for Next.js) > > No functional code changes beyond version/constants and release notes. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 189811e. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 7f388b6 commit 16522c3

File tree

37 files changed

+740
-660
lines changed

37 files changed

+740
-660
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.218.1](https://github.com/boundaryml/baml/compare/0.218.0..0.218.1) - 2026-01-27
6+
7+
### Bug Fixes
8+
- Fix streaming retries not working (#3025) - ([149a9ae](https://github.com/boundaryml/baml/commit/149a9ae5748664659888b4d2d53c3eb8df7c33d3)) - Antonio Sarosi
9+
- **(zed)** get zed extension working again (#3024) - ([95934b7](https://github.com/boundaryml/baml/commit/95934b793455983e5e7d77a2c1d17ef6d5943906)) - Sam Lijin
10+
- proxy toggling error message (#3026) - ([cc2a120](https://github.com/boundaryml/baml/commit/cc2a12044eadb561b15dfca1d6f48d4d66ec5e20)) - Sam Lijin
11+
- make HMR test pass (#3029) - ([03e95d2](https://github.com/boundaryml/baml/commit/03e95d2de94640c55d34a1debdcaa1ffedf63319)) - Sam Lijin
12+
- fix issue with vscode 'unspecified error' where CORS proxy wasnt enabled (#3034)
13+
- Fix Vertex AI credential parsing for double-quoted JSON (#3028) - ([68f4ad6](https://github.com/boundaryml/baml/commit/68f4ad6918c1d68c739718bb5940349575c73bd3)) - Dave Laird
14+
15+
### Features
16+
- support --turbo build for Next.js (#2422) - ([9ef044b](https://github.com/boundaryml/baml/commit/9ef044b6bf8d2414ce959f28865732bd8f444549)) - Chris Watts
17+
18+
519
## [0.218.0](https://github.com/boundaryml/baml/compare/0.217.0..0.218.0) - 2026-01-22
620

721
### Bug Fixes

engine/Cargo.lock

Lines changed: 37 additions & 37 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
@@ -185,7 +185,7 @@ tsify = { version = "0.5.6", features = ["js"] }
185185

186186

187187
[workspace.package]
188-
version = "0.218.0"
188+
version = "0.218.1"
189189
authors = ["Boundary <contact@boundaryml.com>"]
190190

191191
description = "BAML Toolchain"

engine/language_client_go/baml_go/lib_common.go

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

3434
const (
35-
VERSION = "0.218.0"
35+
VERSION = "0.218.1"
3636
githubRepo = "boundaryml/baml"
3737
bamlCacheDirEnvVar = "BAML_CACHE_DIR"
3838
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.218.0"
3+
version = "0.218.1"
44
description = "BAML python bindings (pyproject.toml)"
55
readme = "README.md"
66
authors = [{ "name" = "Boundary", "email" = "contact@boundaryml.com" }]

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.218.0"
5+
spec.version = "0.218.1"
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.218.0",
3+
"version": "0.218.1",
44
"description": "BAML typescript bindings (package.json)",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)