Skip to content

Commit fc60b25

Browse files
committed
chore: v0.41.1 [skip test]
1 parent 5d06e63 commit fc60b25

13 files changed

+28
-28
lines changed

Diff for: .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.41.0" }
245-
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.41.0" }
246-
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.41.0" }
247-
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.41.0" }
248-
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.41.0" }
249-
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.41.0" }
244+
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.41.1" }
245+
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.41.1" }
246+
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.41.1" }
247+
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.41.1" }
248+
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.41.1" }
249+
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.41.1" }
250250
steps:
251251
- uses: actions/checkout@v4
252252
with:

Diff for: README.md

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

5757
#### With executable
5858

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

6161
```shell
6262
# windows x64
63-
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.0/setup-cpp-x64-windows.exe"
63+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.1/setup-cpp-x64-windows.exe"
6464

6565
# linux x64
66-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.0/setup-cpp-x64-linux"
66+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.1/setup-cpp-x64-linux"
6767
chmod +x ./setup-cpp
6868

6969
# macos arm64
70-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.0/setup-cpp-arm64-macos"
70+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.1/setup-cpp-arm64-macos"
7171
chmod +x ./setup-cpp
7272

7373
# macos x64
74-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.0/setup-cpp-x64-macos"
74+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.41.1/setup-cpp-x64-macos"
7575
chmod +x ./setup-cpp
7676
```
7777

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

162162
```dockerfile
163-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.41.0 AS builder
163+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.41.1 AS builder
164164
```
165165

166166
```dockerfile
167-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.41.0 AS builder
167+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.41.1 AS builder
168168
```
169169

170170
```dockerfile
171-
FROM aminya/setup-cpp-fedora-llvm:40-0.41.0 AS builder
171+
FROM aminya/setup-cpp-fedora-llvm:40-0.41.1 AS builder
172172
```
173173

174174
```dockerfile
175-
FROM aminya/setup-cpp-arch-llvm:base-0.41.0 AS builder
175+
FROM aminya/setup-cpp-arch-llvm:base-0.41.1 AS builder
176176
```
177177

178178
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
@@ -191,7 +191,7 @@ RUN apt-get update -qq && \
191191
# install nodejs
192192
apt-get install -y --no-install-recommends nodejs npm && \
193193
# install setup-cpp
194-
npm install -g [email protected].0 && \
194+
npm install -g [email protected].1 && \
195195
# install the compiler and tools
196196
setup-cpp \
197197
--nala true \
@@ -300,7 +300,7 @@ stages:
300300
apt-get install -y --no-install-recommends nodejs npm
301301

302302
# install setup-cpp
303-
npm install -g [email protected].0
303+
npm install -g [email protected].1
304304

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

Diff for: 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 [email protected].0 && \
9+
npm install -g [email protected].1 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler llvm \

Diff for: 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 [email protected].0 && \
9+
npm install -g [email protected].1 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler mingw \

Diff for: 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 [email protected].0 && \
7+
npm install -g [email protected].1 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler llvm \

Diff for: 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 [email protected].0 && \
7+
npm install -g [email protected].1 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler mingw \

Diff for: 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 [email protected].0 && \
14+
npm install -g [email protected].1 && \
1515
# install the compiler and tools
1616
setup-cpp \
1717
--nala true \

Diff for: 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 [email protected].0 && \
8+
npm install -g [email protected].1 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

Diff for: 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 [email protected].0 && \
8+
npm install -g [email protected].1 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

Diff for: 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.

Diff for: dist/modern/setup-cpp.mjs

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

Diff for: 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.41.0"
3+
"version": "0.41.1"
44
}

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.41.0",
3+
"version": "0.41.1",
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)