-
Notifications
You must be signed in to change notification settings - Fork 56
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.65.0 (#1123)
Bump version to 0.65.0\n\n❌ Typescript integ tests\n❌ Python integ tests\n\nGenerated by bump-version script. <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Bump version from 0.64.0 to 0.65.0 in various configuration and test files. > > - **Version Update**: > - Bump version from `0.64.0` to `0.65.0` in `Cargo.lock`, `Cargo.toml`, and `inlinedbaml.ts`. > - **Tests**: > - Update version in `generators.baml` from `0.64.0` to `0.65.0`. > - Note: Typescript and Python integration tests are not included. > > <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 ec5f0d6. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
- Loading branch information
Showing
19 changed files
with
2,469 additions
and
951 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,20 @@ | |
|
||
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. | ||
|
||
## [0.65.0](https://github.com/boundaryml/baml/compare/0.64.0..0.65.0) - 2024-10-31 | ||
|
||
### Documentation | ||
|
||
- **New Documentation Structure**: Introduced version 3 of the documentation, enhancing clarity and organization. ([#1118](https://github.com/boundaryml/baml/commit/bab2767414172dd632437a57631c4cee04910518)) | ||
|
||
Co-authored by: Vaibhav Gupta <[email protected]>, Antonio Sarosi <[email protected]> | ||
|
||
### Bug Fixes | ||
|
||
- **Python Type Handling**: Moved Python Checked and Check types into `baml_client` for better type management. ([#1122](https://github.com/boundaryml/baml/commit/0ccf473fd821d25d431bbf4341c4e837967104bf)) | ||
- **Literal Input Type Checking**: Fixed an issue where literal inputs were not being type-checked correctly. ([#1121](https://github.com/boundaryml/baml/commit/aa5dc85026a175216b5caae6320d09a1fcd35752)) | ||
|
||
|
||
## [0.64.0](https://github.com/boundaryml/baml/compare/0.63.0..0.64.0) - 2024-10-29 | ||
|
||
### Bug Fixes | ||
|
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 |
---|---|---|
|
@@ -81,7 +81,7 @@ internal-baml-jinja = { path = "baml-lib/jinja" } | |
internal-baml-schema-ast = { path = "baml-lib/schema-ast" } | ||
|
||
[workspace.package] | ||
version = "0.64.0" | ||
version = "0.65.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.64.0" | ||
version = "0.65.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.64.0" | ||
spec.version = "0.65.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.64.0" | ||
version "0.65.0" | ||
} | ||
|
||
generator lang_typescript { | ||
output_type typescript | ||
output_dir "../typescript" | ||
version "0.64.0" | ||
version "0.65.0" | ||
} | ||
|
||
generator lang_ruby { | ||
output_type ruby/sorbet | ||
output_dir "../ruby" | ||
version "0.64.0" | ||
version "0.65.0" | ||
} | ||
|
||
// generator openapi { | ||
// output_type rest/openapi | ||
// output_dir "../openapi" | ||
// version "0.64.0" | ||
// version "0.65.0" | ||
// on_generate "rm .gitignore" | ||
// } |
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
Oops, something went wrong.