From ced47e4d43e86c248fec5e5ee53484a481b3802f Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 17 Jan 2023 22:12:27 -0800 Subject: [PATCH] chore: v0.26.0 [skip test] --- README.md | 12 ++++++------ dev/docker/ubuntu.dockerfile | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5a362276..f93d57f4 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner You can download a self-contained executable file and run it with the available options. -Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.25.1), and run it with the available options. +Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.26.0), and run it with the available options. Tip: You can automate downloading using `wget`, `curl`, or other similar tools. @@ -72,7 +72,7 @@ An example that installs llvm, cmake, ninja, ccache, and vcpkg: ```shell # windows example (open PowerShell as admin) -curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-windows.exe" +curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-windows.exe" ./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true RefreshEnv.cmd # activate cpp environment variables @@ -80,7 +80,7 @@ RefreshEnv.cmd # activate cpp environment variables ```shell # linux example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux" chmod +x ./setup-cpp-x64-linux sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -89,7 +89,7 @@ source ~/.cpprc # activate cpp environment variables ```shell # macos example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-macos" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-macos" chmod +x ./setup-cpp-x64-macos sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -169,7 +169,7 @@ FROM ubuntu:22.04 AS base WORKDIR "/" RUN apt-get update -qq RUN apt-get install -y --no-install-recommends wget -RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux" +RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux" RUN chmod +x ./setup-cpp-x64-linux # install llvm, cmake, ninja, and ccache @@ -261,7 +261,7 @@ stages: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F .setup-cpp: &setup-cpp | - curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux" + curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux" chmod +x setup-cpp-x64-linux ./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true source ~/.cpprc diff --git a/dev/docker/ubuntu.dockerfile b/dev/docker/ubuntu.dockerfile index 9badbb75..f059b4f5 100644 --- a/dev/docker/ubuntu.dockerfile +++ b/dev/docker/ubuntu.dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:22.04 AS base WORKDIR "/" RUN apt-get update -qq RUN apt-get install -y --no-install-recommends wget -RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux" +RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux" RUN chmod +x ./setup-cpp-x64-linux # install llvm, cmake, ninja, and ccache diff --git a/package.json b/package.json index 31de88ca..f68f3801 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-cpp", - "version": "0.25.1", + "version": "0.26.0", "description": "Install all the tools required for building and testing C++/C projects.", "repository": "https://github.com/aminya/setup-cpp", "license": "Apache-2.0",