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)
This commit is contained in:
Weston Pace
2024-05-23 09:29:40 -07:00
committed by GitHub
parent 8511edaaab
commit f69c3e0595

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.4.21-beta.0"
current_version = "0.4.20"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[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}\""
replace = "\nversion = \"{new_version}\""