Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-van committed Apr 16, 2022
1 parent 64b0659 commit a25365c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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 && \
Expand Down
16 changes: 0 additions & 16 deletions multirun.c
Original file line number Diff line number Diff line change
@@ -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 <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit a25365c

Please sign in to comment.