diff --git a/CMakeLists.txt b/CMakeLists.txt index 035af36..8b100d0 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.0.1 LANGUAGES C) +project(multirun VERSION 1.1.0 LANGUAGES C) add_compile_definitions(PROJECT_VERSION="${PROJECT_VERSION}") diff --git a/README.md b/README.md index 1c851f2..ffd27d3 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.0.1/multirun-x86_64-linux-gnu-1.0.1.tar.gz -O - | tar -xz && \ +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 && \ 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.0.1.tar.gz -O - | tar -xz && \ -mv multirun-1.0.1 multirun-src && \ +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 && \ cd multirun-src && \ cmake -S . -B build && \ cmake --build build && \ diff --git a/multirun.c b/multirun.c index d630d22..51d8180 100644 --- a/multirun.c +++ b/multirun.c @@ -1,19 +1,3 @@ -/* -Copyright (c) 2016 Nicolas Vanhoren - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ #include #include