shaarli / Shaarli

The personal, minimalist, super-fast, database free, bookmarking service - community repo

Home Page:https://shaarli.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Latest release version is not displayed in `/admin/server` since v0.12.2 release

nodiscc opened this issue · comments

image

The latest release version number was still detected as v0.12.1 since the latest branch was not yet updated. I removed the latest branch (see #1959), for consistency we will now use a branch named release to check for the latest release version number.

Updated documentation/release procedure/version check branch in #1960

Should be fixed by #1960 and

git checkout v0.12.2
# create the new 'release' branch
git checkout -b release
git push -u upstream release
# recreate a 'latest' branch so that the latest release version number is detected correctly on Shaarli =< v0.12.2
git checkout -b latest
git push -u upstream latest

nice job ;)