From f69c3e0595c8dafad82a93a11e1f9f8f8d32c8fa Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Thu, 23 May 2024 09:29:40 -0700 Subject: [PATCH] chore: sync bumpversion.toml with actual version (#1321) Attempting to create a new minor version failed with: ``` Specified version (0.4.21-beta.0) does not match last tagged version (0.4.20) ``` It seems the last release commit for rust/node was made without the new process and did not adjust bumpversion.toml correctly (or maybe bumpversion.toml did not exist at that time) --- .bumpversion.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index c2ebbb26..fb464830 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.4.21-beta.0" +current_version = "0.4.20" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\. @@ -54,4 +54,4 @@ replace = "\nversion = \"{new_version}\"" [[tool.bumpversion.files]] filename = "rust/lancedb/Cargo.toml" search = "\nversion = \"{current_version}\"" -replace = "\nversion = \"{new_version}\"" \ No newline at end of file +replace = "\nversion = \"{new_version}\""