Skip to content

Commit d9da7e0

Browse files
authored
bump version 0.207.1 (#2450)
- **Dont animate sidebar to improve performance** - **build TS before generating** - **Bump version to 0.207.1** - **update generated files** <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > This PR removes sidebar animations for performance, updates the TypeScript build process, and bumps the version to 0.207.1. > > - **Performance**: > - Removed sidebar animations in `playground-panel` to improve performance. > - **Build Process**: > - Updated TypeScript build script in `package.json` to include `build:debug` step. > - **Version Bump**: > - Incremented version to `0.207.1` in `Cargo.toml`, `lib.go`, and `pyproject.toml`. > - **Changelog**: > - Updated `CHANGELOG.md` and `changelog.mdx` with new version details. > - **Generated Files**: > - Updated generated files in `integ-tests` to reflect version bump. > > <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 f0d9e1d. 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 137ee7e commit d9da7e0

File tree

36 files changed

+124
-93
lines changed

36 files changed

+124
-93
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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.207.1](https://github.com/boundaryml/baml/compare/0.207.0..0.207.1) - 2025-09-13
6+
7+
### Bug Fixes
8+
9+
- **(jetbrains)** implement dynamic versioning (#2439) - ([d352f02](https://github.com/boundaryml/baml/commit/d352f02883c5c01200ae4aacfe095396c6ef272b)) - Samuel Lijin
10+
- **(openai)** openai-responses had a bug in the assistant request format (#2440) - ([aca1c53](https://github.com/boundaryml/baml/commit/aca1c5314d29d7f91d02c29356d5e2a2dbb87319)) - Samuel Lijin
11+
- make baml-cli in go also work if you type 'baml' (#2445) - ([5f2df4b](https://github.com/boundaryml/baml/commit/5f2df4b323231d9d9b1a21cf4f4fb7d8ee92fac4)) - aaronvg
12+
- [Playground] Dont animate sidebar to improve performance - ([80ff10a](https://github.com/boundaryml/baml/commit/80ff10a7ff3432a94b17b2982c3ad1a01c4c59e2)) - Aaron Villalpando
13+
14+
### Docs
15+
- Document fixing parsing issues with LLMs (#2448) - ([137ee7e](https://github.com/boundaryml/baml/commit/137ee7e303cd009f41504e15c2a7ed4aa3132eb0)) - Greg Hale
16+
517
## [0.207.0](https://github.com/boundaryml/baml/compare/0.206.1..0.207.0) - 2025-09-10
618

719
### Bug Fixes

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
@@ -169,7 +169,7 @@ tokio = { version = "1", default-features = false, features = [
169169
] }
170170

171171
[workspace.package]
172-
version = "0.207.0"
172+
version = "0.207.1"
173173
authors = ["Boundary <contact@boundaryml.com>"]
174174

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

0 commit comments

Comments
 (0)