blob: 049942600fcd1fb7d88adadf37ae806097a93b17 [file] [log] [blame]
Jakub Ružička891b73a2021-07-14 17:26:48 +02001#!/bin/bash
2# get latest upstream libnetconf2 version from github
3
4RLS_URL=https://api.github.com/repos/CESNET/libnetconf2/releases
5VERSION=$(curl -s $RLS_URL | grep tag_name | cut -d '"' -f 4 | sort --version-sort | tail -n 1)
6VERSION=${VERSION#v}
7echo $VERSION