7

For example, how can I list available GDAL library versions ?
They are not listed on VCPKG packages website neither by vcpkg search gdalcommand.

Kiruahxh
  • 1,276
  • 13
  • 30

2 Answers2

7

Try this! it is a quick fix until vcpkg supports pkgs version listing. https://github.com/hamaney/vcpkg_version_finder.

on a related note: to look up a package by name and get the latest available version of it use vcpkg search <pkg name>

UPDATE SEP-11-2021: I just found out that you can use the experimental flag x-history. for example vcpkg x-history <pkg name> (you might need an internet connection the first time you run this command).

hamaney
  • 454
  • 7
  • 16
2

You can use https://vcpkg.link/ in order to find all the versions of a package and when it got released (e.g. https://vcpkg.link/ports/gdal/versions for gdal). Besides, you can also see from which version a given feature has been introduced by looking at the overview of a package.

Disclosure: I'm the creator of the platform.

Nicolas Jakob
  • 123
  • 2
  • 4