Skip to content

Commit 3aac37c

Browse files
committed
chore(release): v1.1.0 [skip test]
1 parent 8a10f32 commit 3aac37c

15 files changed

+47
-47
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,13 @@ jobs:
236236
platform:
237237
- linux/amd64
238238
container:
239-
- { distro: "ubuntu", image: "setup-cpp-ubuntu", tag: "22.04-1.0.0" }
240-
- { distro: "fedora", image: "setup-cpp-fedora", tag: "40-1.0.0" }
241-
- { distro: "arch", image: "setup-cpp-arch", tag: "base-1.0.0" }
239+
- { distro: "ubuntu", image: "setup-cpp-ubuntu", tag: "22.04-1.1.0" }
240+
- { distro: "fedora", image: "setup-cpp-fedora", tag: "40-1.1.0" }
241+
- { distro: "arch", image: "setup-cpp-arch", tag: "base-1.1.0" }
242242
include:
243243
- os: ubuntu-24.04-arm
244244
platform: linux/arm64
245-
container: { distro: "ubuntu", image: "setup-cpp-ubuntu", tag: "22.04-1.0.0" }
245+
container: { distro: "ubuntu", image: "setup-cpp-ubuntu", tag: "22.04-1.1.0" }
246246
steps:
247247
- uses: actions/checkout@v4
248248
with:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.21...3.28)
22

33
project(
44
setup_cpp_tests
5-
VERSION 1.0.0
5+
VERSION 1.1.0
66
DESCRIPTION "Tests for setup-cpp"
77
HOMEPAGE_URL "https://github.com/aminya/setup-cpp"
88
LANGUAGES CXX C)

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -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"
8181
chmod +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"
8585
chmod +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"
8989
chmod +x ./setup-cpp
9090
```
9191

@@ -219,25 +219,25 @@ The names are in the format `aminya/setup-cpp-<platform>:<platform_version>-<set
219219
Base 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

225225
Image 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

231231
Image 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

237237
Image 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
247247
Base 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

253253
Image 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

259259
Image 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

265265
Image 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
277277
Base 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

283283
Image 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

289289
Image 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

295295
Image 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

README_DOCKER.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,75 +23,75 @@ The names are in the format `aminya/setup-cpp-<platform>:<platform_version>-<set
2323
Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
2424

2525
```dockerfile
26-
FROM aminya/setup-cpp-ubuntu:22.04-1.0.0 AS builder
26+
FROM aminya/setup-cpp-ubuntu:22.04-1.1.0 AS builder
2727
```
2828

2929
Image with `llvm` and the base tools:
3030

3131
```dockerfile
32-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.0.0 AS builder
32+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.1.0 AS builder
3333
```
3434

3535
Image with `gcc` and the base tools:
3636

3737
```dockerfile
38-
FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.0.0 AS builder
38+
FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.1.0 AS builder
3939
```
4040

4141
Image with `mingw` and the base tools:
4242

4343
```dockerfile
44-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0.0 AS builder
44+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.1.0 AS builder
4545
```
4646

4747
#### Fedora Images
4848

4949
Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
5050

5151
```dockerfile
52-
FROM aminya/setup-cpp-fedora:40-1.0.0 AS builder
52+
FROM aminya/setup-cpp-fedora:40-1.1.0 AS builder
5353
```
5454

5555
Image with `llvm` and the base tools:
5656

5757
```dockerfile
58-
FROM aminya/setup-cpp-fedora-llvm:40-1.0.0 AS builder
58+
FROM aminya/setup-cpp-fedora-llvm:40-1.1.0 AS builder
5959
```
6060

6161
Image with `gcc` and the base tools:
6262

6363
```dockerfile
64-
FROM aminya/setup-cpp-fedora-gcc:40-1.0.0 AS builder
64+
FROM aminya/setup-cpp-fedora-gcc:40-1.1.0 AS builder
6565
```
6666

6767
Image with `mingw` and the base tools:
6868

6969
```dockerfile
70-
FROM aminya/setup-cpp-fedora-mingw:40-1.0.0 AS builder
70+
FROM aminya/setup-cpp-fedora-mingw:40-1.1.0 AS builder
7171
```
7272

7373
#### ArchLinux Images
7474

7575
Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
7676

7777
```dockerfile
78-
FROM aminya/setup-cpp-arch:base-1.0.0 AS builder
78+
FROM aminya/setup-cpp-arch:base-1.1.0 AS builder
7979
```
8080

8181
Image with `llvm` and the base tools:
8282

8383
```dockerfile
84-
FROM aminya/setup-cpp-arch-llvm:base-1.0.0 AS builder
84+
FROM aminya/setup-cpp-arch-llvm:base-1.1.0 AS builder
8585
```
8686

8787
Image with `gcc` and the base tools:
8888

8989
```dockerfile
90-
FROM aminya/setup-cpp-arch-gcc:base-1.0.0 AS builder
90+
FROM aminya/setup-cpp-arch-gcc:base-1.1.0 AS builder
9191
```
9292

9393
Image with `mingw` and the base tools:
9494

9595
```dockerfile
96-
FROM aminya/setup-cpp-arch-mingw:base-1.0.0 AS builder
96+
FROM aminya/setup-cpp-arch-mingw:base-1.1.0 AS builder
9797
```

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

Lines changed: 1 addition & 1 deletion
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@v1.0.0 && \
9+
npm install -g setup-cpp@v1.1.0 && \
1010
# install the compiler and tools
1111
NODE_OPTIONS="--enable-source-maps" \
1212
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
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@v1.0.0 && \
9+
npm install -g setup-cpp@v1.1.0 && \
1010
# install the compiler and tools
1111
NODE_OPTIONS="--enable-source-maps" \
1212
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
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@v1.0.0 && \
7+
npm install -g setup-cpp@v1.1.0 && \
88
# install the compiler and tools
99
NODE_OPTIONS="--enable-source-maps" \
1010
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
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@v1.0.0 && \
7+
npm install -g setup-cpp@v1.1.0 && \
88
# install the compiler and tools
99
NODE_OPTIONS="--enable-source-maps" \
1010
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
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@v1.0.0 && \
14+
npm install -g setup-cpp@v1.1.0 && \
1515
# install the compiler and tools
1616
NODE_OPTIONS="--enable-source-maps" \
1717
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update -qq && \
1010
apt-get update -qq && \
1111
apt-get install -y --no-install-recommends nodejs && \
1212
# install setup-cpp
13-
npm install -g setup-cpp@v1.0.0 && \
13+
npm install -g setup-cpp@v1.1.0 && \
1414
# install the compiler and tools
1515
NODE_OPTIONS="--enable-source-maps" \
1616
setup-cpp \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update -qq && \
1010
apt-get update -qq && \
1111
apt-get install -y --no-install-recommends nodejs && \
1212
# install setup-cpp
13-
npm install -g setup-cpp@v1.0.0 && \
13+
npm install -g setup-cpp@v1.1.0 && \
1414
# install the compiler and tools
1515
NODE_OPTIONS="--enable-source-maps" \
1616
setup-cpp \

dist/legacy/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package-version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "setup-cpp",
3-
"version": "1.0.0"
3+
"version": "1.1.0"
44
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "1.0.0",
3+
"version": "1.1.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)