Skip to content

Commit 309003b

Browse files
committed
Release version 0.4.0
1 parent 093606d commit 309003b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "arp-scan"
33
description = "A minimalistic ARP scan tool"
44
license = "AGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
authors = ["Saluki"]
77
edition = "2018"
88
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Find all hosts in your local network using this fast ARP scanner. The CLI is wri
1818
Download the `arp-scan` binary for Linux (Ubuntu, Fedora, Debian, ...). See the [releases page](https://github.com/Saluki/arp-scan-rs/releases) for other binaries.
1919

2020
```bash
21-
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.3.0/arp-scan-v0.3.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
21+
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.4.0/arp-scan-v0.4.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
2222
```
2323

2424
List all available network interfaces.
@@ -53,7 +53,7 @@ List all available network interfaces. Using this option will only print a list
5353

5454
Perform a scan on the network interface `eth0`. The first valid IPv4 network on this interface will be used as scan target.
5555

56-
#### Set timeout `-t 15`
56+
#### Set global scan timeout `-t 15`
5757

5858
Enforce a timeout of at least 15 seconds. This timeout is a minimum value (scans may take a little more time). Default value is `2`.
5959

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const TIMEOUT_DEFAULT: u64 = 2;
1616
fn main() {
1717

1818
let matches = App::new("arp-scan")
19-
.version("0.3.0")
19+
.version("0.4.0")
2020
.about("A minimalistic ARP scan tool written in Rust")
2121
.arg(
2222
Arg::with_name("interface").short("i").long("interface").takes_value(true).value_name("INTERFACE_NAME").help("Network interface")

0 commit comments

Comments
 (0)