Skip to content

Commit 43c67b8

Browse files
committed
chore: v0.23.0 [skip test]
1 parent e41547f commit 43c67b8

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
@@ -36,21 +36,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
3636

3737
#### Executable
3838

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

4141
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4242

4343
```ps1
4444
# windows example (open shell as admin)
45-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp_windows.exe"
45+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp_windows.exe"
4646
.\setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
4747
4848
RefreshEnv.cmd # activate cpp environment variables
4949
```
5050

5151
```ps1
5252
# linux example
53-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp_linux"
53+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp_linux"
5454
chmod +x setup_cpp_linux
5555
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5656
@@ -59,7 +59,7 @@ source ~/.cpprc # activate cpp environment variables
5959

6060
```ps1
6161
# mac example
62-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp_mac"
62+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp_mac"
6363
chmod +x setup_cpp_mac
6464
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6565
@@ -74,15 +74,15 @@ NOTE: On Unix systems, you will not need `sudo` if you are already a root user (
7474

7575
#### With Nodejs
7676

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

7979
On Windows:
8080

8181
Open the shell as admin, download via `curl`, then install
8282

8383
```ps1
8484
# open shell as admin
85-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp.js"
85+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp.js"
8686
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8787
8888
RefreshEnv.cmd # activate cpp environment variables
@@ -91,7 +91,7 @@ RefreshEnv.cmd # activate cpp environment variables
9191
On Linux or Mac:
9292

9393
```ps1
94-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp.js"
94+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp.js"
9595
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9696
9797
source ~/.cpprc # activate cpp environment variables
@@ -170,7 +170,7 @@ FROM ubuntu:22.04 AS base
170170
WORKDIR "/"
171171
RUN apt-get update -qq
172172
RUN apt-get install -y --no-install-recommends wget
173-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp_linux"
173+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp_linux"
174174
RUN chmod +x ./setup_cpp_linux
175175

176176
# install llvm, cmake, ninja, and ccache
@@ -262,7 +262,7 @@ stages:
262262
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
263263

264264
.setup_cpp: &setup_cpp |
265-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.22.0/setup_cpp_linux"
265+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/setup_cpp_linux"
266266
chmod +x setup_cpp_linux
267267
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
268268
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.22.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.23.0/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.22.0",
3+
"version": "0.23.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)