-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump version to 0.60.0 (#1024)
Bump version to 0.60.0\n\n❌ Typescript integ tests\n❌ Python integ tests\n\nGenerated by bump-version script. <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Bump version from 0.59.0 to 0.60.0 across multiple configuration files and update changelog. > > - **Version Bump**: > - Update version from `0.59.0` to `0.60.0` in `Cargo.lock`, `Cargo.toml`, `pyproject.toml`, `baml.gemspec`, `package.json`, and `baml` files. > - Update version in `engine.cfg`, `integ-tests.cfg`, `python.cfg`, `ruby.cfg`, `typescript.cfg`, and `vscode.cfg`. > - **Changelog**: > - Add entry for version `0.60.0` in `CHANGELOG.md` with miscellaneous chores, bug fixes, and documentation updates. > > <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 5129035. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
- Loading branch information
Showing
17 changed files
with
51 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ internal-baml-jinja = { path = "baml-lib/jinja" } | |
internal-baml-schema-ast = { path = "baml-lib/schema-ast" } | ||
|
||
[workspace.package] | ||
version = "0.59.0" | ||
version = "0.60.0" | ||
authors = ["Boundary <[email protected]>"] | ||
|
||
description = "BAML Toolchain" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "baml-py" | ||
version = "0.59.0" | ||
version = "0.60.0" | ||
description = "BAML python bindings (pyproject.toml)" | ||
readme = "README.md" | ||
authors = [["Boundary", "[email protected]"]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "baml" | ||
spec.version = "0.59.0" | ||
spec.version = "0.60.0" | ||
spec.authors = ["BoundaryML"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
generator lang_python { | ||
output_type python/pydantic | ||
output_dir "../python" | ||
version "0.59.0" | ||
version "0.60.0" | ||
} | ||
|
||
generator lang_typescript { | ||
output_type typescript | ||
output_dir "../typescript" | ||
version "0.59.0" | ||
version "0.60.0" | ||
} | ||
|
||
generator lang_ruby { | ||
output_type ruby/sorbet | ||
output_dir "../ruby" | ||
version "0.59.0" | ||
version "0.60.0" | ||
} | ||
|
||
generator openapi { | ||
output_type rest/openapi | ||
output_dir "../openapi" | ||
version "0.59.0" | ||
version "0.60.0" | ||
on_generate "rm .gitignore" | ||
} |
Oops, something went wrong.