Skip to content

Commit 5fb63f5

Browse files
committed
v0.14.1 [skip ci]
1 parent 9614260 commit 5fb63f5

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
5252

5353
### Executable
5454

55-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.14.0), and run it with the available options.
55+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.14.1), and run it with the available options.
5656

5757
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5858

5959
```ps1
6060
# windows example (open shell as admin)
61-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_windows.exe"
61+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_windows.exe"
6262
.\setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6363
6464
RefreshEnv.cmd # activate cpp environment variables
6565
```
6666

6767
```ps1
6868
# linux example
69-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_linux"
69+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_linux"
7070
chmod +x setup_cpp_linux
7171
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7272
@@ -75,7 +75,7 @@ source ~/.cpprc # activate cpp environment variables
7575

7676
```ps1
7777
# mac example
78-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_mac"
78+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_mac"
7979
chmod +x setup_cpp_mac
8080
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8181
@@ -90,15 +90,15 @@ NOTE: On Unix systems, you will not need `sudo` if you are already a root user (
9090

9191
### With Nodejs
9292

93-
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp.js), and run it with the available options.
93+
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp.js), and run it with the available options.
9494

9595
On Windows:
9696

9797
Open the shell as admin, download via `curl`, then install
9898

9999
```ps1
100100
# open shell as admin
101-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp.js"
101+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp.js"
102102
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
103103
104104
RefreshEnv.cmd # activate cpp environment variables
@@ -107,7 +107,7 @@ RefreshEnv.cmd # activate cpp environment variables
107107
On Linux or Mac:
108108

109109
```ps1
110-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp.js"
110+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp.js"
111111
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
112112
113113
source ~/.cpprc # activate cpp environment variables
@@ -186,7 +186,7 @@ FROM ubuntu:22.04 AS base
186186
WORKDIR "/"
187187
RUN apt-get update -qq
188188
RUN apt-get install -y --no-install-recommends wget
189-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_linux"
189+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_linux"
190190
RUN chmod +x ./setup_cpp_linux
191191

192192
# install llvm, cmake, ninja, and ccache
@@ -280,7 +280,7 @@ stages:
280280
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
281281

282282
.setup_cpp: &setup_cpp |
283-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_linux"
283+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_linux"
284284
chmod +x setup_cpp_linux
285285
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
286286
source ~/.cpprc

dev/docker/ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM ubuntu:22.04 AS base
55
WORKDIR "/"
66
RUN apt-get update -qq
77
RUN apt-get install -y --no-install-recommends wget
8-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.14.1/setup_cpp_linux"
99
RUN chmod +x ./setup_cpp_linux
1010

1111
# install llvm, cmake, ninja, and ccache

package.json

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