Skip to content

Commit a25365c

Browse files
committed
1.1.0
1 parent 64b0659 commit a25365c

File tree

3 files changed

+4
-20
lines changed

3 files changed

+4
-20
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
22

33
set(CMAKE_C_STANDARD 99)
44

5-
project(multirun VERSION 1.0.1 LANGUAGES C)
5+
project(multirun VERSION 1.1.0 LANGUAGES C)
66

77
add_compile_definitions(PROJECT_VERSION="${PROJECT_VERSION}")
88

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The [release page](https://github.com/nicolas-van/multirun/releases) lists all p
3838
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.
3939

4040
```bash
41-
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 && \
41+
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 && \
4242
mv multirun /bin
4343
```
4444

@@ -54,8 +54,8 @@ We provide binaries for the following systems:
5454
This project necessitates CMake.
5555

5656
```bash
57-
wget -c https://github.com/nicolas-van/multirun/archive/refs/tags/1.0.1.tar.gz -O - | tar -xz && \
58-
mv multirun-1.0.1 multirun-src && \
57+
wget -c https://github.com/nicolas-van/multirun/archive/refs/tags/1.1.0.tar.gz -O - | tar -xz && \
58+
mv multirun-1.1.0 multirun-src && \
5959
cd multirun-src && \
6060
cmake -S . -B build && \
6161
cmake --build build && \

multirun.c

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
Copyright (c) 2016 Nicolas Vanhoren
3-
4-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
5-
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
6-
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
7-
persons to whom the Software is furnished to do so, subject to the following conditions:
8-
9-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
10-
Software.
11-
12-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13-
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
14-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
15-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16-
*/
171

182
#include <stdio.h>
193
#include <stdlib.h>

0 commit comments

Comments
 (0)