Skip to content

Commit

Permalink
Make: Upgrade TinySemVer
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Aug 5, 2024
1 parent 2ef547c commit f7e4c05
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,20 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Run TinySemVer
uses: ashvardanian/tinysemver@v1.4.1
uses: ashvardanian/tinysemver@v2.0.1
with:
verbose: "true"
version-file: "VERSION"
update-version-in: 'pyproject.toml,^version = "(\d+\.\d+\.\d+)"'
update-version-in: 'Cargo.toml,^version = "(\d+\.\d+\.\d+)"'
update-version-in: 'package.json,"version": "(\d+\.\d+\.\d+)"'
update-version-in: 'CITATION.cff,^version: (\d+\.\d+\.\d+)'
update-version-in: 'CMakeLists.txt,VERSION (\d+\.\d+\.\d+)'
update-major-version-in: 'include/stringzilla/stringzilla.h,^#define STRINGZILLA_VERSION_MAJOR (\d+)'
update-minor-version-in: 'include/stringzilla/stringzilla.h,^#define STRINGZILLA_VERSION_MINOR (\d+)'
update-patch-version-in: 'include/stringzilla/stringzilla.h,^#define STRINGZILLA_VERSION_PATCH (\d+)'
update-version-in: |
Cargo.toml:^version = "(\d+\.\d+\.\d+)"
package.json:"version": "(\d+\.\d+\.\d+)"
CMakeLists.txt:VERSION (\d+\.\d+\.\d+)
update-major-version-in: |
include/stringzilla/stringzilla.h:^#define STRINGZILLA_VERSION_MAJOR (\d+)
update-minor-version-in: |
include/stringzilla/stringzilla.h:^#define STRINGZILLA_VERSION_MINOR (\d+)
update-patch-version-in: |
include/stringzilla/stringzilla.h:^#define STRINGZILLA_VERSION_PATCH (\d+)
dry-run: "true"

test_ubuntu_gcc:
Expand Down

0 comments on commit f7e4c05

Please sign in to comment.