Skip to content

Commit 75f3e2a

Browse files
authored
bump version 0.203.1 (#2244)
- **Bump version to 0.203.1** - **update version** <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Bump version to 0.203.1 across multiple components, update configuration files, and add changelog entry. > > - **Version Bump**: > - Update version to `0.203.1` in `engine/Cargo.toml`, `engine/language_client_go/baml_go/lib.go`, and `engine/language_client_python/pyproject.toml`. > - Update version to `0.203.1` in `engine/language_client_ruby/baml.gemspec` and `engine/language_client_typescript/package.json`. > - Update version to `0.203.1` in `typescript/apps/vscode-ext/package.json` and `jetbrains/gradle.properties`. > - **Changelog**: > - Add entry for version `0.203.1` in `CHANGELOG.md` and `fern/pages/changelog.mdx`. > - **Configuration**: > - Update `tools/versions/*.cfg` files to reflect new version `0.203.1`. > - Update version in `integ-tests/baml_src/generators.baml` and `integ-tests/python-v1/baml_client/__init__.py`. > - Update version in `integ-tests/python/baml_client/__init__.py` and `integ-tests/react/baml_client/index.ts`. > - Update version in `integ-tests/typescript-esm/baml_client/index.ts` and `integ-tests/typescript/baml_client/index.ts`. > > <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 540c4f7. 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 5785158 commit 75f3e2a

File tree

32 files changed

+94
-80
lines changed

32 files changed

+94
-80
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.203.1](https://github.com/boundaryml/baml/compare/0.203.0..0.203.1) - 2025-08-01
6+
7+
### Bug Fixes
8+
9+
- fix baml-cli init, and playground state when selecting and running tests (#2242)
10+
11+
512
## [0.203.0](https://github.com/boundaryml/baml/compare/0.202.1..0.203.0) - 2025-08-01
613

714
### Bug Fixes

engine/Cargo.lock

Lines changed: 32 additions & 32 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
@@ -129,7 +129,7 @@ tokio = { version = "1", default-features = false, features = [
129129
] }
130130

131131
[workspace.package]
132-
version = "0.203.0"
132+
version = "0.203.1"
133133
authors = ["Boundary <[email protected]>"]
134134

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

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

fern/pages/changelog.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.203.1](https://github.com/boundaryml/baml/compare/0.203.0..0.203.1) - 2025-08-01
8+
9+
### Bug Fixes
10+
11+
- fix baml-cli init, and playground state when selecting and running tests (#2242)
12+
13+
714
## [0.203.0](https://github.com/boundaryml/baml/compare/0.202.1..0.203.0) - 2025-08-01
815

916
### Bug Fixes

0 commit comments

Comments
 (0)