-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix test_version during release process and simplify versions in READ…
…ME.md (#1938) In the README.md we had version info like this: ```md release = "$tag" commit = "$url/$short_commit" branch = "$url/$short_name" julia_version = "$julia_version" core_version = "$version" ``` This cuts it down to just this: ```md version = "$tag" commit = "$url/$short_commit" branch = "$url/$short_name" ``` Where `tag` is of the form `2024.10.0-128-ge09eeb5` if it is after tag v2024.10.0, otherwise just `2024.10.0` The `test_version` just checks the form, because we bump the versions before doing a git tag, so they can be off by one version temporarily. I think that's simpler than introducing more difficult logic in `set_version` to handle this. Fixes #1655
- Loading branch information
Showing
2 changed files
with
12 additions
and
20 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
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