From 60fa97fe61e7f5c8ee40993f308bb7d8e62a9a8c Mon Sep 17 00:00:00 2001 From: Nicolas Vanhoren Date: Mon, 18 Apr 2022 00:56:08 +0200 Subject: [PATCH] 1.1.1 --- CMakeLists.txt | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b100d0..ab7555b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10) set(CMAKE_C_STANDARD 99) -project(multirun VERSION 1.1.0 LANGUAGES C) +project(multirun VERSION 1.1.1 LANGUAGES C) add_compile_definitions(PROJECT_VERSION="${PROJECT_VERSION}") diff --git a/README.md b/README.md index 43bf563..4b6958a 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ The [release page](https://github.com/nicolas-van/multirun/releases) lists all p Here is an example install script for an x86_64 Linux using GNU libc. Replace the URL with another one if you use another system. ```bash -wget -c https://github.com/nicolas-van/multirun/releases/download/1.1.0/multirun-x86_64-linux-gnu-1.1.0.tar.gz -O - | tar -xz && \ +wget -c https://github.com/nicolas-van/multirun/releases/download/1.1.1/multirun-x86_64-linux-gnu-1.1.1.tar.gz -O - | tar -xz && \ mv multirun /bin ``` @@ -54,8 +54,8 @@ We provide binaries for the following systems: This project necessitates CMake. ```bash -wget -c https://github.com/nicolas-van/multirun/archive/refs/tags/1.1.0.tar.gz -O - | tar -xz && \ -mv multirun-1.1.0 multirun-src && \ +wget -c https://github.com/nicolas-van/multirun/archive/refs/tags/1.1.1.tar.gz -O - | tar -xz && \ +mv multirun-1.1.1 multirun-src && \ cd multirun-src && \ cmake -S . -B build && \ cmake --build build && \