Skip to content

Commit 004edc1

Browse files
committed
chore(release): v1.7.0 [skip test]
1 parent 46cbfc2 commit 004edc1

30 files changed

+4470
-40
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212

1313
env:
1414
NODE_OPTIONS: --enable-source-maps
15-
version: "1.6.2"
15+
version: "1.7.0"
1616

1717
jobs:
1818
Build:

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.6.2
5+
VERSION 1.7.0
66
DESCRIPTION "Tests for setup-cpp"
77
HOMEPAGE_URL "https://github.com/aminya/setup-cpp"
88
LANGUAGES CXX C)

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ 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.6.2), 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.7.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.6.2/setup-cpp-x64-windows.exe"
77+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.7.0/setup-cpp-x64-windows.exe"
7878
# linux x64
79-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.6.2/setup-cpp-x64-linux"
79+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.7.0/setup-cpp-x64-linux"
8080
# linux arm64
81-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.6.2/setup-cpp-arm64-linux"
81+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.7.0/setup-cpp-arm64-linux"
8282
# macos arm64
83-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.6.2/setup-cpp-arm64-macos"
83+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.7.0/setup-cpp-arm64-macos"
8484
# macos x64
85-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.6.2/setup-cpp-x64-macos"
85+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.7.0/setup-cpp-x64-macos"
8686
```
8787

8888
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
@@ -213,8 +213,8 @@ The tags are in the following template:
213213

214214
- Base image: `aminya/setup-cpp-ubuntu:24.04`
215215
- Compiler image: `aminya/setup-cpp-ubuntu-llvm:24.04`
216-
- Base image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu:24.04-v1.6.2`
217-
- Compiler image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu-llvm:24.04-v1.6.2`
216+
- Base image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu:24.04-v1.7.0`
217+
- Compiler image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu-llvm:24.04-v1.7.0`
218218

219219
The supported platforms are `ubuntu`, `alpine`, `fedora`, and `arch`. The supported compilers are `llvm`, `gcc`, and `mingw`.
220220

@@ -366,7 +366,7 @@ RUN apt-get update -qq && \
366366
# install nodejs
367367
apt-get install -y --no-install-recommends nodejs npm && \
368368
# install setup-cpp
369-
npm install -g setup-cpp@v1.6.2 && \
369+
npm install -g setup-cpp@v1.7.0 && \
370370
# install the compiler and tools
371371
NODE_OPTIONS="--enable-source-maps" \
372372
setup-cpp \
@@ -476,7 +476,7 @@ stages:
476476
apt-get install -y --no-install-recommends nodejs npm
477477
478478
# install setup-cpp
479-
npm install -g setup-cpp@v1.6.2
479+
npm install -g setup-cpp@v1.7.0
480480
481481
# install the compiler and tools
482482
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true

README_DOCKER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The tags are in the following template:
2020

2121
- Base image: `aminya/setup-cpp-ubuntu:24.04`
2222
- Compiler image: `aminya/setup-cpp-ubuntu-llvm:24.04`
23-
- Base image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu:24.04-v1.6.2`
24-
- Compiler image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu-llvm:24.04-v1.6.2`
23+
- Base image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu:24.04-v1.7.0`
24+
- Compiler image with pinned setup-cpp version: `aminya/setup-cpp-ubuntu-llvm:24.04-v1.7.0`
2525

2626
The supported platforms are `ubuntu`, `alpine`, `fedora`, and `arch`. The supported compilers are `llvm`, `gcc`, and `mingw`.
2727

dist/legacy/assets/actions_python-CuNJhsEe.js.map

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/legacy/gcc_matcher.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
{"problemMatcher":[{"owner":"gcc","pattern":[{"regexp":"^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$","file":1,"line":2,"column":3,"severity":4,"message":5}]}]}
1+
{
2+
"problemMatcher": [
3+
{
4+
"owner": "gcc",
5+
"pattern": [
6+
{
7+
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
8+
"file": 1,
9+
"line": 2,
10+
"column": 3,
11+
"severity": 4,
12+
"message": 5
13+
}
14+
]
15+
}
16+
]
17+
}

dist/legacy/github_brechtsanders_winlibs_mingw.json

Lines changed: 736 additions & 1 deletion
Large diffs are not rendered by default.
Lines changed: 110 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,110 @@
1-
{"v1.2.0":["infer-osx-x86_64-v1.2.0.tar.xz","infer-osx-arm64-v1.2.0.tar.xz","infer-linux-x86_64-v1.2.0.tar.xz"],"v1.1.0":["infer-linux64-v1.1.0.tar.xz"],"v1.0.0":["infer-osx-v1.0.0.tar.xz","infer-linux64-v1.0.0.tar.xz"],"v0.17.0":["infer-osx-v0.17.0.tar.xz","infer-linux64-v0.17.0.tar.xz"],"v0.16.0":["infer-osx-v0.16.0.tar.xz","infer-linux64-v0.16.0.tar.xz"],"v0.15.0":["infer-osx-v0.15.0.tar.xz","infer-linux64-v0.15.0.tar.xz"],"v0.14.0":["infer-osx-v0.14.0.tar.xz","infer-linux64-v0.14.0.tar.xz"],"v0.13.1":["infer-osx-v0.13.1.tar.xz","infer-linux64-v0.13.1.tar.xz"],"v0.13.0":["infer-osx-v0.13.0.tar.xz","infer-linux64-v0.13.0.tar.xz"],"v0.12.1":["infer-osx-v0.12.1.tar.xz","infer-linux64-v0.12.1.tar.xz"],"v0.12.0":["infer-osx-v0.12.0.tar.xz","infer-linux64-v0.12.0.tar.xz"],"v0.11.0":["infer-osx-v0.11.0.tar.xz","infer-linux64-v0.11.0.tar.xz"],"v0.10.0":["infer-osx-v0.10.0.tar.xz","infer-linux64-v0.10.0.tar.xz"],"v0.9.5":["infer-osx-v0.9.5.tar.xz","infer-linux64-v0.9.5.tar.xz"],"v0.9.4.1":["infer-osx-v0.9.4.1.tar.xz","infer-linux64-v0.9.4.1.tar.xz"],"v0.9.4":["infer-osx-v0.9.4.tar.xz","infer-linux64-v0.9.4.tar.xz"],"v0.9.3":["infer-osx-v0.9.3.tar.xz","infer-linux64-v0.9.3.tar.xz"],"v0.9.2":["infer-osx-v0.9.2.tar.xz","infer-linux64-v0.9.2.tar.xz"],"v0.9.1":["infer-osx-v0.9.1.tar.xz","infer-linux64-v0.9.1.tar.xz"],"v0.9.0":["infer-osx-v0.9.0.tar.xz","infer-linux64-v0.9.0.tar.xz"],"v0.8.1":["infer-osx-v0.8.1.tar.xz","infer-linux64-v0.8.1.tar.xz"],"v0.8.0":["infer-osx-v0.8.0.tar.xz","infer-linux64-v0.8.0.tar.xz"],"v0.7.0":["infer-osx-v0.7.0.tar.xz","infer-linux64-v0.7.0.tar.xz"],"v0.6.0":["infer-osx-v0.6.0.tar.xz","infer-linux64-v0.6.0.tar.xz"],"v0.5.0":["infer-osx-v0.5.0.tar.xz","infer-linux64-v0.5.0.tar.xz"],"v0.4.0":["infer-osx-v0.4.0.tar.xz","infer-linux64-v0.4.0.tar.xz"],"v0.3.0":["infer-osx-v0.3.0.tar.xz","infer-linux64-v0.3.0.tar.xz"]}
1+
{
2+
"v1.2.0": [
3+
"infer-osx-x86_64-v1.2.0.tar.xz",
4+
"infer-osx-arm64-v1.2.0.tar.xz",
5+
"infer-linux-x86_64-v1.2.0.tar.xz"
6+
],
7+
"v1.1.0": [
8+
"infer-linux64-v1.1.0.tar.xz"
9+
],
10+
"v1.0.0": [
11+
"infer-osx-v1.0.0.tar.xz",
12+
"infer-linux64-v1.0.0.tar.xz"
13+
],
14+
"v0.17.0": [
15+
"infer-osx-v0.17.0.tar.xz",
16+
"infer-linux64-v0.17.0.tar.xz"
17+
],
18+
"v0.16.0": [
19+
"infer-osx-v0.16.0.tar.xz",
20+
"infer-linux64-v0.16.0.tar.xz"
21+
],
22+
"v0.15.0": [
23+
"infer-osx-v0.15.0.tar.xz",
24+
"infer-linux64-v0.15.0.tar.xz"
25+
],
26+
"v0.14.0": [
27+
"infer-osx-v0.14.0.tar.xz",
28+
"infer-linux64-v0.14.0.tar.xz"
29+
],
30+
"v0.13.1": [
31+
"infer-osx-v0.13.1.tar.xz",
32+
"infer-linux64-v0.13.1.tar.xz"
33+
],
34+
"v0.13.0": [
35+
"infer-osx-v0.13.0.tar.xz",
36+
"infer-linux64-v0.13.0.tar.xz"
37+
],
38+
"v0.12.1": [
39+
"infer-osx-v0.12.1.tar.xz",
40+
"infer-linux64-v0.12.1.tar.xz"
41+
],
42+
"v0.12.0": [
43+
"infer-osx-v0.12.0.tar.xz",
44+
"infer-linux64-v0.12.0.tar.xz"
45+
],
46+
"v0.11.0": [
47+
"infer-osx-v0.11.0.tar.xz",
48+
"infer-linux64-v0.11.0.tar.xz"
49+
],
50+
"v0.10.0": [
51+
"infer-osx-v0.10.0.tar.xz",
52+
"infer-linux64-v0.10.0.tar.xz"
53+
],
54+
"v0.9.5": [
55+
"infer-osx-v0.9.5.tar.xz",
56+
"infer-linux64-v0.9.5.tar.xz"
57+
],
58+
"v0.9.4.1": [
59+
"infer-osx-v0.9.4.1.tar.xz",
60+
"infer-linux64-v0.9.4.1.tar.xz"
61+
],
62+
"v0.9.4": [
63+
"infer-osx-v0.9.4.tar.xz",
64+
"infer-linux64-v0.9.4.tar.xz"
65+
],
66+
"v0.9.3": [
67+
"infer-osx-v0.9.3.tar.xz",
68+
"infer-linux64-v0.9.3.tar.xz"
69+
],
70+
"v0.9.2": [
71+
"infer-osx-v0.9.2.tar.xz",
72+
"infer-linux64-v0.9.2.tar.xz"
73+
],
74+
"v0.9.1": [
75+
"infer-osx-v0.9.1.tar.xz",
76+
"infer-linux64-v0.9.1.tar.xz"
77+
],
78+
"v0.9.0": [
79+
"infer-osx-v0.9.0.tar.xz",
80+
"infer-linux64-v0.9.0.tar.xz"
81+
],
82+
"v0.8.1": [
83+
"infer-osx-v0.8.1.tar.xz",
84+
"infer-linux64-v0.8.1.tar.xz"
85+
],
86+
"v0.8.0": [
87+
"infer-osx-v0.8.0.tar.xz",
88+
"infer-linux64-v0.8.0.tar.xz"
89+
],
90+
"v0.7.0": [
91+
"infer-osx-v0.7.0.tar.xz",
92+
"infer-linux64-v0.7.0.tar.xz"
93+
],
94+
"v0.6.0": [
95+
"infer-osx-v0.6.0.tar.xz",
96+
"infer-linux64-v0.6.0.tar.xz"
97+
],
98+
"v0.5.0": [
99+
"infer-osx-v0.5.0.tar.xz",
100+
"infer-linux64-v0.5.0.tar.xz"
101+
],
102+
"v0.4.0": [
103+
"infer-osx-v0.4.0.tar.xz",
104+
"infer-linux64-v0.4.0.tar.xz"
105+
],
106+
"v0.3.0": [
107+
"infer-osx-v0.3.0.tar.xz",
108+
"infer-linux64-v0.3.0.tar.xz"
109+
]
110+
}

dist/legacy/github_llvm_llvm-project.json

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

dist/legacy/llvm_matcher.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
{"problemMatcher":[{"owner":"llvm","pattern":[{"regexp":"^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$","file":1,"line":2,"column":3,"severity":4,"message":5}]}]}
1+
{
2+
"problemMatcher": [
3+
{
4+
"owner": "llvm",
5+
"pattern": [
6+
{
7+
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
8+
"file": 1,
9+
"line": 2,
10+
"column": 3,
11+
"severity": 4,
12+
"message": 5
13+
}
14+
]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)