mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
10 lines
282 B
Python
10 lines
282 B
Python
# MIT licensed
|
|
# Copyright (c) 2020 Felix Yan <felixonmars@archlinux.org>, et al.
|
|
|
|
async def get_version(name, conf, *, cache, **kwargs):
|
|
url = conf['mercurial'] + '/json-tags'
|
|
|
|
data = await cache.get_json(url)
|
|
|
|
version = [tag['tag'] for tag in data['tags']]
|
|
return version
|