Yeah, I think they are strays added by GitHub Actions, they don't line up with the actual version that's tracked inside the source code, which indicates v0.20.1:
```
Add a "Create and push git tag" step to the release job, right before
the "Create release" step. The tag is created with git tag and pushed
with the deploy key already configured by the Clone step, instead of
relying on the Releases API (action-create-release) to create it as a
side effect.
The tag is lightweight, matching all existing b release tags.
The step is idempotent: if the tag already exists (e.g. on a re-run),
creation and push are skipped.
```
I think they just haven't configured the TAG part of that properly yet, so it created an incorrect tag the first run.
asveikau•37m ago
The github release pages for this project have me wondering who it is for. There are multiple releases per day. Also the Linux release binaries do not compile for CUDA.
It's more reasonable for a lot of people to just follow master and build from source.
ggerganov•16m ago
Didn't expect this to pop up here - please ignore for now. We are preparing official semantic versioning of llama.cpp and it's almost ready, but not quite.
tingletech•57m ago
seems like stray tags?
rpdillon•56m ago
https://github.com/ggml-org/llama.cpp/commit/cea66f4c5a17255...
wccrawford•30m ago
``` Add a "Create and push git tag" step to the release job, right before the "Create release" step. The tag is created with git tag and pushed with the deploy key already configured by the Clone step, instead of relying on the Releases API (action-create-release) to create it as a side effect.
The tag is lightweight, matching all existing b release tags. The step is idempotent: if the tag already exists (e.g. on a re-run), creation and push are skipped. ```
I think they just haven't configured the TAG part of that properly yet, so it created an incorrect tag the first run.