Skip to content

Commit 5f4f319

Browse files
committed
chore: v0.43.0 [skip test]
1 parent 037f22b commit 5f4f319

13 files changed

+28
-28
lines changed

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,12 @@ jobs:
241241
pnpm:
242242
- 9.10.0
243243
container:
244-
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.42.0" }
245-
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.42.0" }
246-
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.42.0" }
247-
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.42.0" }
248-
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.42.0" }
249-
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.42.0" }
244+
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.43.0" }
245+
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.43.0" }
246+
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.43.0" }
247+
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.43.0" }
248+
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.43.0" }
249+
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.43.0" }
250250
steps:
251251
- uses: actions/checkout@v4
252252
with:

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,22 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
5757

5858
#### With executable
5959

60-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.42.0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
60+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.43.0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
6161

6262
```shell
6363
# windows x64
64-
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.42.0/setup-cpp-x64-windows.exe"
64+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-windows.exe"
6565

6666
# linux x64
67-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.42.0/setup-cpp-x64-linux"
67+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-linux"
6868
chmod +x ./setup-cpp
6969

7070
# macos arm64
71-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.42.0/setup-cpp-arm64-macos"
71+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-arm64-macos"
7272
chmod +x ./setup-cpp
7373

7474
# macos x64
75-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.42.0/setup-cpp-x64-macos"
75+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-macos"
7676
chmod +x ./setup-cpp
7777
```
7878

@@ -161,19 +161,19 @@ To provide fast development environments, `setup-cpp` provides several prebuilt
161161
You can use these images as a base image for your project.
162162

163163
```dockerfile
164-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.42.0 AS builder
164+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.43.0 AS builder
165165
```
166166

167167
```dockerfile
168-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.42.0 AS builder
168+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.43.0 AS builder
169169
```
170170

171171
```dockerfile
172-
FROM aminya/setup-cpp-fedora-llvm:40-0.42.0 AS builder
172+
FROM aminya/setup-cpp-fedora-llvm:40-0.43.0 AS builder
173173
```
174174

175175
```dockerfile
176-
FROM aminya/setup-cpp-arch-llvm:base-0.42.0 AS builder
176+
FROM aminya/setup-cpp-arch-llvm:base-0.43.0 AS builder
177177
```
178178

179179
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
@@ -192,7 +192,7 @@ RUN apt-get update -qq && \
192192
# install nodejs
193193
apt-get install -y --no-install-recommends nodejs npm && \
194194
# install setup-cpp
195-
npm install -g setup-cpp@v0.42.0 && \
195+
npm install -g setup-cpp@v0.43.0 && \
196196
# install the compiler and tools
197197
setup-cpp \
198198
--nala true \
@@ -301,7 +301,7 @@ stages:
301301
apt-get install -y --no-install-recommends nodejs npm
302302

303303
# install setup-cpp
304-
npm install -g setup-cpp@v0.42.0
304+
npm install -g setup-cpp@v0.43.0
305305

306306
# install the compiler and tools
307307
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true

dev/docker/setup-cpp/setup-cpp-arch-llvm.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
66
# install nodejs
77
pacman -S --noconfirm --needed nodejs npm && \
88
# install setup-cpp
9-
npm install -g setup-cpp@v0.42.0 && \
9+
npm install -g setup-cpp@v0.43.0 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler llvm \

dev/docker/setup-cpp/setup-cpp-arch-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
66
# install nodejs
77
pacman -S --noconfirm --needed nodejs npm && \
88
# install setup-cpp
9-
npm install -g setup-cpp@v0.42.0 && \
9+
npm install -g setup-cpp@v0.43.0 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler mingw \

dev/docker/setup-cpp/setup-cpp-fedora-llvm.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:40 AS setup-cpp-fedora
44
# install nodejs
55
RUN dnf -y install nodejs npm && \
66
# install setup-cpp
7-
npm install -g setup-cpp@v0.42.0 && \
7+
npm install -g setup-cpp@v0.43.0 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler llvm \

dev/docker/setup-cpp/setup-cpp-fedora-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:40 AS setup-cpp-fedora-mingw
44
# install nodejs
55
RUN dnf -y install nodejs npm && \
66
# install setup-cpp
7-
npm install -g setup-cpp@v0.42.0 && \
7+
npm install -g setup-cpp@v0.43.0 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler mingw \

dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update -qq && \
1111
apt-get update -qq && \
1212
apt-get install -y --no-install-recommends nodejs && \
1313
# install setup-cpp
14-
npm install -g setup-cpp@v0.42.0 && \
14+
npm install -g setup-cpp@v0.43.0 && \
1515
# install the compiler and tools
1616
setup-cpp \
1717
--nala true \

dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update -qq && \
55
# install nodejs
66
apt-get install -y --no-install-recommends nodejs npm && \
77
# install setup-cpp
8-
npm install -g setup-cpp@v0.42.0 && \
8+
npm install -g setup-cpp@v0.43.0 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

dev/docker/setup-cpp/setup-cpp-ubuntu-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update -qq && \
55
# install nodejs
66
apt-get install -y --no-install-recommends nodejs npm && \
77
# install setup-cpp
8-
npm install -g setup-cpp@v0.42.0 && \
8+
npm install -g setup-cpp@v0.43.0 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

dist/legacy/setup-cpp.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

+1-1
Large diffs are not rendered by default.

package-version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.42.0"
3+
"version": "0.43.0"
44
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.42.0",
3+
"version": "0.43.0",
44
"description": "Install all the tools required for building and testing C++/C projects.",
55
"repository": "https://github.com/aminya/setup-cpp",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)