Skip to content

Commit ac552e8

Browse files
committed
chore: v0.31.0 [skip test]
1 parent 1d68644 commit ac552e8

9 files changed

+14
-14
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner
5656

5757
#### With executable
5858

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

6161
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
6262

6363
```shell
6464
# windows example (open PowerShell as admin)
65-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.30.1/setup-cpp-x64-windows.exe"
65+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-windows.exe"
6666
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6767

6868
RefreshEnv.cmd # activate cpp environment variables
6969
```
7070

7171
```shell
7272
# linux example
73-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.30.1/setup-cpp-x64-linux"
73+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-linux"
7474
chmod +x ./setup-cpp-x64-linux
7575
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7676

@@ -79,7 +79,7 @@ source ~/.cpprc # activate cpp environment variables
7979

8080
```shell
8181
# macos example
82-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.30.1/setup-cpp-x64-macos"
82+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-macos"
8383
chmod +x ./setup-cpp-x64-macos
8484
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8585

@@ -159,7 +159,7 @@ RUN apt-get update -qq && \
159159
# install nodejs
160160
apt-get install -y --no-install-recommends nodejs npm && \
161161
# install setup-cpp
162-
npm install -g setup-cpp@v0.30.1 && \
162+
npm install -g setup-cpp@v0.31.0 && \
163163
# install the compiler and tools
164164
setup-cpp \
165165
--nala true \
@@ -269,7 +269,7 @@ stages:
269269
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
270270

271271
.setup-cpp: &setup-cpp |
272-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.30.1/setup-cpp-x64-linux"
272+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-linux"
273273
chmod +x setup-cpp-x64-linux
274274
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
275275
source ~/.cpprc

dev/docker/__tests__/arch.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN pacman -Syuu --noconfirm && \
88
# install nodejs
99
pacman -S --noconfirm --needed nodejs npm && \
1010
# install setup-cpp
11-
npm install -g setup-cpp@v0.30.1 && \
11+
npm install -g setup-cpp@v0.31.0 && \
1212
# install the compiler and tools
1313
node /usr/lib/setup-cpp/setup-cpp.js \
1414
--compiler llvm \

dev/docker/__tests__/fedora.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COPY "./dist/legacy" "/usr/lib/setup-cpp/"
66
# install nodejs
77
RUN dnf -y install nodejs npm && \
88
# install setup-cpp
9-
npm install -g setup-cpp@v0.30.1 && \
9+
npm install -g setup-cpp@v0.31.0 && \
1010
# install the compiler and tools
1111
node /usr/lib/setup-cpp/setup-cpp.js \
1212
--compiler llvm \

dev/docker/__tests__/ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt-get update -qq && \
77
# install nodejs
88
apt-get install -y --no-install-recommends nodejs npm && \
99
# install setup-cpp
10-
npm install -g setup-cpp@v0.30.1 && \
10+
npm install -g setup-cpp@v0.31.0 && \
1111
# install the compiler and tools
1212
node /usr/lib/setup-cpp/setup-cpp.js \
1313
--nala true \

dev/docker/setup-cpp-arch.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.30.1 && \
9+
npm install -g setup-cpp@v0.31.0 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler llvm \

dev/docker/setup-cpp-fedora.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:38 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.30.1 && \
7+
npm install -g setup-cpp@v0.31.0 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler llvm \

dev/docker/setup-cpp-ubuntu.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.30.1 && \
8+
npm install -g setup-cpp@v0.31.0 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

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.30.1"
3+
"version": "0.31.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.30.1",
3+
"version": "0.31.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)