From 518c5e441b70c8b55ddccb042d3bb50366d0386c Mon Sep 17 00:00:00 2001 From: Vaibhav Gupta Date: Wed, 8 Jan 2025 21:53:56 -0800 Subject: [PATCH] Update changelog --- CHANGELOG.md | 7 +++---- fern/pages/changelog.mdx | 14 ++++++++++---- tools/bump-version | 4 ++++ 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd84b12f..abd1f9649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +BAML generally gets an update every Monday. + All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. ## [0.72.0](https://github.com/boundaryml/baml/compare/0.71.1..0.71.2) - 2025-01-07 @@ -190,8 +192,6 @@ All notable changes to this project will be documented in this file. See [conven - **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 , Antonio Sarosi - ### 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)) @@ -399,7 +399,7 @@ Shout outs to Nico for fixing some internal Rust dependencies, and to Lorenz for ### Bug Fixes -- show actionable errors for string[]? and map<...>? type validation (#946) - ([48879c0](https://github.com/boundaryml/baml/commit/48879c0744f79b482ef0d2b0624464053558ada4)) - Samuel Lijin +- show actionable errors for string[]? and map>...>? type validation (#946) - ([48879c0](https://github.com/boundaryml/baml/commit/48879c0744f79b482ef0d2b0624464053558ada4)) - Samuel Lijin ### Documentation @@ -793,4 +793,3 @@ The default base URL for the Gemini provider has been updated to v1beta. This ch - check for updates on the hour (#434) - ([c70a3b3](https://github.com/boundaryml/baml/commit/c70a3b373cb2346a0df9a1eba0ebacb74d59b53e)) - Samuel Lijin - diff --git a/fern/pages/changelog.mdx b/fern/pages/changelog.mdx index 9a2421dfe..7456585f1 100644 --- a/fern/pages/changelog.mdx +++ b/fern/pages/changelog.mdx @@ -1,3 +1,12 @@ +--- +title: Changelog +--- + + +BAML generally gets an update every Monday. + + + All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. ## [0.72.0](https://github.com/boundaryml/baml/compare/0.71.1..0.71.2) - 2025-01-07 @@ -188,8 +197,6 @@ All notable changes to this project will be documented in this file. See [conven - **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 , Antonio Sarosi - ### 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)) @@ -397,7 +404,7 @@ Shout outs to Nico for fixing some internal Rust dependencies, and to Lorenz for ### Bug Fixes -- show actionable errors for string[]? and map<...>? type validation (#946) - ([48879c0](https://github.com/boundaryml/baml/commit/48879c0744f79b482ef0d2b0624464053558ada4)) - Samuel Lijin +- show actionable errors for string[]? and map>...>? type validation (#946) - ([48879c0](https://github.com/boundaryml/baml/commit/48879c0744f79b482ef0d2b0624464053558ada4)) - Samuel Lijin ### Documentation @@ -791,4 +798,3 @@ The default base URL for the Gemini provider has been updated to v1beta. This ch - check for updates on the hour (#434) - ([c70a3b3](https://github.com/boundaryml/baml/commit/c70a3b373cb2346a0df9a1eba0ebacb74d59b53e)) - Samuel Lijin - diff --git a/tools/bump-version b/tools/bump-version index 29a5746ec..ee8ea5c39 100755 --- a/tools/bump-version +++ b/tools/bump-version @@ -224,7 +224,11 @@ while true; do fi done +cp CHANGELOG.md ${_repo_root}/fern/pages/changelog.mdx +sed -i '' '1s/.*/---\ntitle: Changelog\n---/' ./fern/pages/changelog.mdx + git add CHANGELOG.md +git add fern/pages/changelog.mdx git commit --amend --no-edit # Now run the build scripts for python and typescript integ tests