Update libsyncthing to v1.14.0

This commit is contained in:
Martchus 2021-03-02 18:03:08 +01:00
parent f5b6c506c7
commit 56c488ea6c
3 changed files with 5 additions and 4 deletions

View File

@ -6,7 +6,7 @@ set(META_PROJECT_TYPE library)
set(META_APP_NAME "Syncthing library")
set(META_APP_DESCRIPTION "Syncthing itself, built as a shared or static library")
set(META_PROJECT_VARNAME_UPPER LIB_SYNCTHING)
set(META_SYNCTHING_VERSION "v1.13.1")
set(META_SYNCTHING_VERSION "v1.14.0")
# add project files
set(HEADER_FILES interface.h)

@ -1 +1 @@
Subproject commit 563ed358f409e825efe488a6d5da0f85b8f8abdc
Subproject commit 5e0dcd33fd1bdf11fbf6866f74b9d124152347bb

View File

@ -40,5 +40,6 @@ git -C "$syncthingrepodir" rebase "$latest_tag"
git -C "$syncthingrepodir" branch "libsyncthing-$latest_tag"
echo '==> Pushing updated/new libsyncthing branches to GitHub'
git -C "$syncthingrepodir" push -fu martchus libsyncthing-latest:libsyncthing-latest
git -C "$syncthingrepodir" push -u martchus "libsyncthing-$latest_tag:libsyncthing-$latest_tag"
git -C "$syncthingrepodir" config remote.all.url > /dev/null && remote=all || remote=martchus
git -C "$syncthingrepodir" push -fu "$remote" libsyncthing-latest:libsyncthing-latest
git -C "$syncthingrepodir" push -u "$remote" "libsyncthing-$latest_tag:libsyncthing-$latest_tag"