Skip to content

Commit 12e62a1

Browse files
committed
chore: v0.46.0 [skip test]
1 parent 60dbf57 commit 12e62a1

13 files changed

+28
-28
lines changed

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,12 @@ jobs:
224224
os:
225225
- ubuntu-24.04
226226
container:
227-
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.45.0" }
228-
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.45.0" }
229-
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.45.0" }
230-
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.45.0" }
231-
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.45.0" }
232-
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.45.0" }
227+
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.46.0" }
228+
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.46.0" }
229+
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.46.0" }
230+
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.46.0" }
231+
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.46.0" }
232+
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.46.0" }
233233
steps:
234234
- uses: actions/checkout@v4
235235
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.45.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.46.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.45.0/setup-cpp-x64-windows.exe"
64+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.46.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.45.0/setup-cpp-x64-linux"
67+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.46.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.45.0/setup-cpp-arm64-macos"
71+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.46.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.45.0/setup-cpp-x64-macos"
75+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.46.0/setup-cpp-x64-macos"
7676
chmod +x ./setup-cpp
7777
```
7878

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

169169
```dockerfile
170-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.45.0 AS builder
170+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.46.0 AS builder
171171
```
172172

173173
```dockerfile
174-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.45.0 AS builder
174+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.46.0 AS builder
175175
```
176176

177177
```dockerfile
178-
FROM aminya/setup-cpp-fedora-llvm:40-0.45.0 AS builder
178+
FROM aminya/setup-cpp-fedora-llvm:40-0.46.0 AS builder
179179
```
180180

181181
```dockerfile
182-
FROM aminya/setup-cpp-arch-llvm:base-0.45.0 AS builder
182+
FROM aminya/setup-cpp-arch-llvm:base-0.46.0 AS builder
183183
```
184184

185185
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
@@ -198,7 +198,7 @@ RUN apt-get update -qq && \
198198
# install nodejs
199199
apt-get install -y --no-install-recommends nodejs npm && \
200200
# install setup-cpp
201-
npm install -g setup-cpp@v0.45.0 && \
201+
npm install -g setup-cpp@v0.46.0 && \
202202
# install the compiler and tools
203203
setup-cpp \
204204
--nala true \
@@ -307,7 +307,7 @@ stages:
307307
apt-get install -y --no-install-recommends nodejs npm
308308

309309
# install setup-cpp
310-
npm install -g setup-cpp@v0.45.0
310+
npm install -g setup-cpp@v0.46.0
311311

312312
# install the compiler and tools
313313
./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.45.0 && \
9+
npm install -g setup-cpp@v0.46.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.45.0 && \
9+
npm install -g setup-cpp@v0.46.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.45.0 && \
7+
npm install -g setup-cpp@v0.46.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.45.0 && \
7+
npm install -g setup-cpp@v0.46.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.45.0 && \
14+
npm install -g setup-cpp@v0.46.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.45.0 && \
8+
npm install -g setup-cpp@v0.46.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.45.0 && \
8+
npm install -g setup-cpp@v0.46.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.45.0"
3+
"version": "0.46.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.45.0",
3+
"version": "0.46.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)