Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-van committed Jan 20, 2020
1 parent 6323e6e commit 858cd5e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10)
set(CMAKE_C_STANDARD 99)

# set the project name
project(multirun VERSION 0.3.2 LANGUAGES C)
project(multirun VERSION 1.0.0 LANGUAGES C)

configure_file(config.h.in config.h)

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@ apk add multirun
#### Binary install

```bash
wget https://github.com/nicolas-van/multirun/releases/download/0.3.2/multirun-musl-0.3.2.tar.gz && \
tar -zxvf multirun-musl-0.3.2.tar.gz && \
wget https://github.com/nicolas-van/multirun/releases/download/1.0.0/multirun-musl-1.0.0.tar.gz && \
tar -zxvf multirun-musl-1.0.0.tar.gz && \
mv multirun /bin && \
rm multirun-musl-0.3.2.tar.gz
rm multirun-musl-1.0.0.tar.gz
```

### Ubuntu, Debian, Red Hat, Centos...

#### Binary install

```bash
wget https://github.com/nicolas-van/multirun/releases/download/0.3.2/multirun-glibc-0.3.2.tar.gz && \
tar -zxvf multirun-glibc-0.3.2.tar.gz && \
wget https://github.com/nicolas-van/multirun/releases/download/1.0.0/multirun-glibc-1.0.0.tar.gz && \
tar -zxvf multirun-glibc-1.0.0.tar.gz && \
mv multirun /bin && \
rm multirun-glibc-0.3.2.tar.gz
rm multirun-glibc-1.0.0.tar.gz
```

### From sources

```bash
git clone --branch 0.3.2 https://github.com/nicolas-van/multirun.git && \
git clone --branch 1.0.0 https://github.com/nicolas-van/multirun.git && \
cd multirun && \
cmake . && \
cmake --build . && \
Expand Down

0 comments on commit 858cd5e

Please sign in to comment.