From baac8c6db3aee19ca310deb44ece3f5ba146e0b0 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sun, 22 Oct 2023 17:12:39 -0700 Subject: [PATCH] chore: v0.36.0 [skip test] --- README.md | 12 ++++++------ dev/docker/setup-cpp-arch-mingw.dockerfile | 2 +- dev/docker/setup-cpp-arch.dockerfile | 2 +- dev/docker/setup-cpp-fedora-mingw.dockerfile | 2 +- dev/docker/setup-cpp-fedora.dockerfile | 2 +- dev/docker/setup-cpp-ubuntu-20.0.4.dockerfile | 2 +- dev/docker/setup-cpp-ubuntu-mingw.dockerfile | 2 +- dev/docker/setup-cpp-ubuntu.dockerfile | 2 +- package-version.json | 2 +- package.json | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7f67bdf9..f38b7e26 100644 --- a/README.md +++ b/README.md @@ -58,13 +58,13 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri #### With executable -Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.35.7), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools. +Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.36.0), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools. An example that installs llvm, cmake, ninja, ccache, and vcpkg: ```shell # windows example (open PowerShell as admin) -curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-windows.exe" +curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.36.0/setup-cpp-x64-windows.exe" ./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true RefreshEnv.cmd # activate cpp environment variables @@ -72,7 +72,7 @@ RefreshEnv.cmd # activate cpp environment variables ```shell # linux example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-linux" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.36.0/setup-cpp-x64-linux" chmod +x ./setup-cpp-x64-linux sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -81,7 +81,7 @@ source ~/.cpprc # activate cpp environment variables ```shell # macos example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-macos" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.36.0/setup-cpp-x64-macos" chmod +x ./setup-cpp-x64-macos sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -161,7 +161,7 @@ RUN apt-get update -qq && \ # install nodejs apt-get install -y --no-install-recommends nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --nala true \ @@ -270,7 +270,7 @@ stages: apt-get install -y --no-install-recommends nodejs npm # install setup-cpp - npm install -g setup-cpp@v0.35.7 + npm install -g setup-cpp@v0.36.0 # install the compiler and tools ./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true diff --git a/dev/docker/setup-cpp-arch-mingw.dockerfile b/dev/docker/setup-cpp-arch-mingw.dockerfile index 5a541311..22a9204d 100644 --- a/dev/docker/setup-cpp-arch-mingw.dockerfile +++ b/dev/docker/setup-cpp-arch-mingw.dockerfile @@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \ # install nodejs pacman -S --noconfirm --needed nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --compiler mingw \ diff --git a/dev/docker/setup-cpp-arch.dockerfile b/dev/docker/setup-cpp-arch.dockerfile index 729a8045..a9e2d70f 100644 --- a/dev/docker/setup-cpp-arch.dockerfile +++ b/dev/docker/setup-cpp-arch.dockerfile @@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \ # install nodejs pacman -S --noconfirm --needed nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --compiler llvm \ diff --git a/dev/docker/setup-cpp-fedora-mingw.dockerfile b/dev/docker/setup-cpp-fedora-mingw.dockerfile index 7a69677c..1bd4c8c5 100644 --- a/dev/docker/setup-cpp-fedora-mingw.dockerfile +++ b/dev/docker/setup-cpp-fedora-mingw.dockerfile @@ -4,7 +4,7 @@ FROM fedora:38 as setup-cpp-fedora-mingw # install nodejs RUN dnf -y install nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --compiler mingw \ diff --git a/dev/docker/setup-cpp-fedora.dockerfile b/dev/docker/setup-cpp-fedora.dockerfile index b131454b..48c8829e 100644 --- a/dev/docker/setup-cpp-fedora.dockerfile +++ b/dev/docker/setup-cpp-fedora.dockerfile @@ -4,7 +4,7 @@ FROM fedora:38 as setup-cpp-fedora # install nodejs RUN dnf -y install nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --compiler llvm \ diff --git a/dev/docker/setup-cpp-ubuntu-20.0.4.dockerfile b/dev/docker/setup-cpp-ubuntu-20.0.4.dockerfile index 0d0f0cae..605f0adf 100644 --- a/dev/docker/setup-cpp-ubuntu-20.0.4.dockerfile +++ b/dev/docker/setup-cpp-ubuntu-20.0.4.dockerfile @@ -11,7 +11,7 @@ RUN apt-get update -qq && \ apt-get update -qq && \ apt-get install -y --no-install-recommends nodejs && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --nala true \ diff --git a/dev/docker/setup-cpp-ubuntu-mingw.dockerfile b/dev/docker/setup-cpp-ubuntu-mingw.dockerfile index 37260e6f..f9b1b196 100644 --- a/dev/docker/setup-cpp-ubuntu-mingw.dockerfile +++ b/dev/docker/setup-cpp-ubuntu-mingw.dockerfile @@ -5,7 +5,7 @@ RUN apt-get update -qq && \ # install nodejs apt-get install -y --no-install-recommends nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --nala true \ diff --git a/dev/docker/setup-cpp-ubuntu.dockerfile b/dev/docker/setup-cpp-ubuntu.dockerfile index b79a7ff9..8e676626 100644 --- a/dev/docker/setup-cpp-ubuntu.dockerfile +++ b/dev/docker/setup-cpp-ubuntu.dockerfile @@ -5,7 +5,7 @@ RUN apt-get update -qq && \ # install nodejs apt-get install -y --no-install-recommends nodejs npm && \ # install setup-cpp - npm install -g setup-cpp@v0.35.7 && \ + npm install -g setup-cpp@v0.36.0 && \ # install the compiler and tools setup-cpp \ --nala true \ diff --git a/package-version.json b/package-version.json index 12f80dce..a14d09fa 100644 --- a/package-version.json +++ b/package-version.json @@ -1,4 +1,4 @@ { "name": "setup-cpp", - "version": "0.35.7" + "version": "0.36.0" } diff --git a/package.json b/package.json index 4cfab95e..7f05970d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-cpp", - "version": "0.35.7", + "version": "0.36.0", "description": "Install all the tools required for building and testing C++/C projects.", "repository": "https://github.com/aminya/setup-cpp", "license": "Apache-2.0",