Skip to content

Commit fc877ac

Browse files
committed
v0.9.0 [skip ci]
1 parent 974628d commit fc877ac

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

5252
### Executable
5353

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

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

5858
```ps1
5959
# windows example (open shell as admin)
60-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_windows.exe"
60+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp_windows.exe"
6161
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6262
6363
RefreshEnv.cmd # reload the environment
6464
```
6565

6666
```ps1
6767
# linux example
68-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
68+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp_linux"
6969
chmod +x setup_cpp_linux
7070
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7171
@@ -74,7 +74,7 @@ source ~/.profile # reload the environment
7474

7575
```ps1
7676
# mac example
77-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_mac"
77+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp_mac"
7878
chmod +x setup_cpp_mac
7979
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8080
@@ -88,15 +88,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8888

8989
### With Nodejs
9090

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

9393
On Windows:
9494

9595
Open the shell as admin, download via `curl`, then install
9696

9797
```ps1
9898
# open shell as admin
99-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js"
99+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp.js"
100100
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
101101
102102
RefreshEnv.cmd # reload the environment
@@ -105,7 +105,7 @@ RefreshEnv.cmd # reload the environment
105105
On Linux or Mac:
106106

107107
```ps1
108-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js"
108+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp.js"
109109
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
110110
111111
source ~/.profile # reload the environment
@@ -184,7 +184,7 @@ FROM debian:bullseye
184184
WORKDIR "/"
185185
RUN apt-get update -qq
186186
RUN apt-get install -y --no-install-recommends wget
187-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
187+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp_linux"
188188
RUN chmod +x ./setup_cpp_linux
189189

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

265265
.setup_cpp: &setup_cpp |
266-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
266+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.0/setup_cpp_linux"
267267
chmod +x setup_cpp_linux
268268
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
269269
source ~/.profile

building/docker/debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM debian:bullseye
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.8.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.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.7.0",
3+
"version": "0.9.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)