@@ -70,22 +70,22 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
7070
7171# ### With executable
7272
73- Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.0 .0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
73+ Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.1 .0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
7474
7575` ` ` shell
7676# windows x64
77- curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0 .0/setup-cpp-x64-windows.exe"
77+ curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1 .0/setup-cpp-x64-windows.exe"
7878
7979# linux x64
80- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0 .0/setup-cpp-x64-linux"
80+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1 .0/setup-cpp-x64-linux"
8181chmod +x ./setup-cpp
8282
8383# macos arm64
84- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0 .0/setup-cpp-arm64-macos"
84+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1 .0/setup-cpp-arm64-macos"
8585chmod +x ./setup-cpp
8686
8787# macos x64
88- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0 .0/setup-cpp-x64-macos"
88+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1 .0/setup-cpp-x64-macos"
8989chmod +x ./setup-cpp
9090` ` `
9191
@@ -219,25 +219,25 @@ The names are in the format `aminya/setup-cpp-<platform>:<platform_version>-<set
219219Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
220220
221221` ` ` dockerfile
222- FROM aminya/setup-cpp-ubuntu:22.04-1.0 .0 AS builder
222+ FROM aminya/setup-cpp-ubuntu:22.04-1.1 .0 AS builder
223223` ` `
224224
225225Image with `llvm` and the base tools :
226226
227227` ` ` dockerfile
228- FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.0 .0 AS builder
228+ FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.1 .0 AS builder
229229` ` `
230230
231231Image with `gcc` and the base tools :
232232
233233` ` ` dockerfile
234- FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.0 .0 AS builder
234+ FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.1 .0 AS builder
235235` ` `
236236
237237Image with `mingw` and the base tools :
238238
239239` ` ` dockerfile
240- FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0 .0 AS builder
240+ FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.1 .0 AS builder
241241` ` `
242242
243243# ### Fedora Images
@@ -247,25 +247,25 @@ FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0.0 AS builder
247247Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
248248
249249` ` ` dockerfile
250- FROM aminya/setup-cpp-fedora:40-1.0 .0 AS builder
250+ FROM aminya/setup-cpp-fedora:40-1.1 .0 AS builder
251251` ` `
252252
253253Image with `llvm` and the base tools :
254254
255255` ` ` dockerfile
256- FROM aminya/setup-cpp-fedora-llvm:40-1.0 .0 AS builder
256+ FROM aminya/setup-cpp-fedora-llvm:40-1.1 .0 AS builder
257257` ` `
258258
259259Image with `gcc` and the base tools :
260260
261261` ` ` dockerfile
262- FROM aminya/setup-cpp-fedora-gcc:40-1.0 .0 AS builder
262+ FROM aminya/setup-cpp-fedora-gcc:40-1.1 .0 AS builder
263263` ` `
264264
265265Image with `mingw` and the base tools :
266266
267267` ` ` dockerfile
268- FROM aminya/setup-cpp-fedora-mingw:40-1.0 .0 AS builder
268+ FROM aminya/setup-cpp-fedora-mingw:40-1.1 .0 AS builder
269269` ` `
270270
271271</details>
@@ -277,25 +277,25 @@ FROM aminya/setup-cpp-fedora-mingw:40-1.0.0 AS builder
277277Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
278278
279279` ` ` dockerfile
280- FROM aminya/setup-cpp-arch:base-1.0 .0 AS builder
280+ FROM aminya/setup-cpp-arch:base-1.1 .0 AS builder
281281` ` `
282282
283283Image with `llvm` and the base tools :
284284
285285` ` ` dockerfile
286- FROM aminya/setup-cpp-arch-llvm:base-1.0 .0 AS builder
286+ FROM aminya/setup-cpp-arch-llvm:base-1.1 .0 AS builder
287287` ` `
288288
289289Image with `gcc` and the base tools :
290290
291291` ` ` dockerfile
292- FROM aminya/setup-cpp-arch-gcc:base-1.0 .0 AS builder
292+ FROM aminya/setup-cpp-arch-gcc:base-1.1 .0 AS builder
293293` ` `
294294
295295Image with `mingw` and the base tools :
296296
297297` ` ` dockerfile
298- FROM aminya/setup-cpp-arch-mingw:base-1.0 .0 AS builder
298+ FROM aminya/setup-cpp-arch-mingw:base-1.1 .0 AS builder
299299` ` `
300300
301301</details>
@@ -314,7 +314,7 @@ RUN apt-get update -qq && \
314314 # install nodejs
315315 apt-get install -y --no-install-recommends nodejs npm && \
316316 # install setup-cpp
317- npm install -g setup-cpp@v1.0 .0 && \
317+ npm install -g setup-cpp@v1.1 .0 && \
318318 # install the compiler and tools
319319 NODE_OPTIONS="--enable-source-maps" \
320320 setup-cpp \
@@ -424,7 +424,7 @@ stages:
424424 apt-get install -y --no-install-recommends nodejs npm
425425
426426 # install setup-cpp
427- npm install -g setup-cpp@v1.0 .0
427+ npm install -g setup-cpp@v1.1 .0
428428
429429 # install the compiler and tools
430430 ./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
0 commit comments