diff --git a/src/default_versions.ts b/src/default_versions.ts index ad67e50d..276b237a 100644 --- a/src/default_versions.ts +++ b/src/default_versions.ts @@ -1,17 +1,17 @@ const DefaultVersions: Record = { - llvm: "13.0.0", // https://github.com/llvm/llvm-project/releases - clangtidy: "13.0.0", - clangformat: "13.0.0", + llvm: "14.0.1", // https://github.com/llvm/llvm-project/releases + clangtidy: "14.0.1", + clangformat: "14.0.1", ninja: "1.10.2", // https://github.com/ninja-build/ninja/releases - cmake: "3.22.2", // https://github.com/Kitware/CMake/releases + cmake: "3.23.1", // https://github.com/Kitware/CMake/releases gcovr: "5.0", // https://pypi.org/project/gcovr/ - conan: "1.45.0", // https://github.com/conan-io/conan/releases - meson: "0.61.2", // https://github.com/mesonbuild/meson/releases + conan: "1.47.0", // https://github.com/conan-io/conan/releases + meson: "0.61.4", // https://github.com/mesonbuild/meson/releases python: "3.8.10", - kcov: "v39", // https://github.com/SimonKagstrom/kcov/releases - task: "3.11.0", // https://github.com/go-task/task/releases + kcov: "v40", // https://github.com/SimonKagstrom/kcov/releases + task: "3.12.0", // https://github.com/go-task/task/releases doxygen: "1.9.1", // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen - gcc: process.platform === "win32" ? "11.2.0.07112021" : "11", + gcc: process.platform === "win32" ? "11.2.0.07112021" : "11", // https://community.chocolatey.org/packages/mingw#versionhistory and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc } /** Get the default version if passed true or undefined, otherwise return the version itself */