Skip to content

Commit

Permalink
chore: release 0.51.1 (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellovai authored Jul 21, 2024
1 parent 6df7fca commit 47a03fb
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 29 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

## [0.51.1](https://github.com/boundaryml/baml/compare/0.51.0..0.51.1) - 2024-07-21

### Features

- Add a feedback button to VSCode Extension (#811) - ([f371912](https://github.com/boundaryml/baml/commit/f3719127174d8f998579747f14fae8675dafba4c)) - Samuel Lijin

### Bug

- Allow default_client_mode in the generator #813 (#815) - ([6df7fca](https://github.com/boundaryml/baml/commit/6df7fcabc1eb55b08a50741f2346440f631abd63)) - hellovai

### UNMATCHED

## [0.51.0](https://github.com/boundaryml/baml/compare/0.50.0..0.51.0) - 2024-07-19

### Bug Fixes
Expand Down
28 changes: 14 additions & 14 deletions engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal-baml-core = { path = "baml-lib/baml-core" }
internal-baml-jinja = { path = "baml-lib/jinja" }

[workspace.package]
version = "0.51.0"
version = "0.51.1"
authors = ["Boundary <[email protected]>"]

description = "BAML Toolchain"
Expand Down
2 changes: 1 addition & 1 deletion engine/language_client_python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "baml-py"
version = "0.51.0"
version = "0.51.1"
description = "BAML python bindings (pyproject.toml)"
readme = "README.md"
authors = [["Boundary", "[email protected]"]]
Expand Down
2 changes: 1 addition & 1 deletion engine/language_client_ruby/baml.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "baml"
spec.version = "0.51.0"
spec.version = "0.51.1"
spec.authors = ["BoundaryML"]
spec.email = ["[email protected]"]

Expand Down
2 changes: 1 addition & 1 deletion engine/language_client_typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@boundaryml/baml",
"version": "0.51.0",
"version": "0.51.1",
"description": "BAML typescript bindings (package.json)",
"repository": {
"type": "git",
Expand Down
15 changes: 10 additions & 5 deletions tools/bump-version
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,17 @@ fi
_repo_root="$(git rev-parse --show-toplevel)"
cd "${_repo_root}/tools"


version_bump="patch"

git pull --tags

if [ "$_all_mode" -eq 1 ]; then
bump2version --config-file ./versions/engine.cfg minor
bump2version --config-file ./versions/python.cfg minor --allow-dirty
bump2version --config-file ./versions/typescript.cfg minor --allow-dirty
bump2version --config-file ./versions/ruby.cfg minor --allow-dirty
bump2version --config-file ./versions/vscode.cfg minor --allow-dirty
bump2version --config-file ./versions/engine.cfg $version_bump --allow-dirty
bump2version --config-file ./versions/python.cfg $version_bump --allow-dirty
bump2version --config-file ./versions/typescript.cfg $version_bump --allow-dirty
bump2version --config-file ./versions/ruby.cfg $version_bump --allow-dirty
bump2version --config-file ./versions/vscode.cfg $version_bump --allow-dirty
elif [ "$_ts_mode" -eq 1 ]; then
bump2version --config-file ./versions/typescript.cfg patch
elif [ "$_python_mode" -eq 1 ]; then
Expand Down
2 changes: 1 addition & 1 deletion tools/versions/engine.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.51.0
current_version = 0.51.1
commit = False
tag = False
parse = ^(?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)$
Expand Down
2 changes: 1 addition & 1 deletion tools/versions/python.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.51.0
current_version = 0.51.1
commit = False
tag = False
parse = ^(?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)$
Expand Down
2 changes: 1 addition & 1 deletion tools/versions/ruby.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.51.0
current_version = 0.51.1
commit = False
tag = False
parse = ^(?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)$
Expand Down
2 changes: 1 addition & 1 deletion tools/versions/typescript.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.51.0
current_version = 0.51.1
commit = False
tag = False
parse = ^(?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)$
Expand Down
2 changes: 1 addition & 1 deletion tools/versions/vscode.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.51.0
current_version = 0.51.1
commit = False
tag = False
parse = ^(?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)$
Expand Down
2 changes: 1 addition & 1 deletion typescript/vscode-ext/packages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "baml-extension",
"displayName": "Baml",
"description": "BAML is a DSL for AI applications.",
"version": "0.51.0",
"version": "0.51.1",
"publisher": "Boundary",
"repository": "https://github.com/BoundaryML/baml",
"homepage": "https://www.boundaryml.com",
Expand Down

0 comments on commit 47a03fb

Please sign in to comment.