Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaHydrae committed May 15, 2019
1 parent cd5eb2e commit 97d1681
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v3.0.1

* Fix the `-p, --port` command-line flag which had no effect.

## v3.0.0

* **Breaking:** environment variables are no longer interpolated in command-line
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ The command is executed asynchronously.

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

[![version](https://img.shields.io/badge/Version-v3.0.0-blue.svg)](https://github.com/AlphaHydrae/monohook/releases/tag/v3.0.0)
* [Changelog](CHANGELOG.md)

[![version](https://img.shields.io/badge/Version-v3.0.1-blue.svg)](https://github.com/AlphaHydrae/monohook/releases/tag/v3.0.1)
[![build status](https://travis-ci.org/AlphaHydrae/monohook.svg?branch=master)](https://travis-ci.org/AlphaHydrae/monohook)
[![license](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE.txt)

Expand Down Expand Up @@ -76,7 +78,7 @@ To use MonoHook in a `Dockerfile`, simply download the binary and make it execut

```
RUN wget -O /usr/local/bin/monohook \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.0/monohook_linux_amd64 && \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.1/monohook_linux_amd64 && \
chmod +x /usr/local/bin/monohook
```

Expand All @@ -86,28 +88,28 @@ RUN wget -O /usr/local/bin/monohook \

```
wget -O /usr/local/bin/monohook \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.0/monohook_linux_amd64 && \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.1/monohook_linux_amd64 && \
chmod +x /usr/local/bin/monohook
```
* **Linux (arm64)**

```
wget -O /usr/local/bin/monohook \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.0/monohook_linux_arm64 && \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.1/monohook_linux_arm64 && \
chmod +x /usr/local/bin/monohook
```
* **macOS**

```
wget -O /usr/local/bin/monohook \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.0/monohook_darwin_amd64 && \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.1/monohook_darwin_amd64 && \
chmod +x /usr/local/bin/monohook
```
* **Windows**

```
wget -O /usr/local/bin/monohook \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.0/monohook_windows_amd64 && \
https://github.com/AlphaHydrae/monohook/releases/download/v3.0.1/monohook_windows_amd64 && \
chmod +x /usr/local/bin/monohook
```

Expand Down

0 comments on commit 97d1681

Please sign in to comment.