Skip to content

Commit

Permalink
docs: add changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gongzhengyang committed Dec 12, 2023
1 parent 5b7b350 commit 3284fba
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



# 0.5.0 (2023-06-29)
## 0.6.0(2023/12/12)

- **added:** add `ip scan results` save


## 0.5.0 (2023/06/29)

- **added:** add `macos` support

# 0.3.0 (2023-05-20)
## 0.3.0 (2023/05/20)

- **added:** add `udp` scan argument in binary executor and `readme`


# 0.2.1 (2023-05-19)
## 0.2.1 (2023/05/19)

- **added:** `cmd` parse with full `args`
- **added:** add `tokio-console` for task schedule manage
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rscan"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
categories = ["asynchronous", "command-line-utilities", "network-programming"]
description = "Fast scan network by sending icmp, tcp, udp packets, inspired by nmap but doesn't depend on nmap"
Expand Down
17 changes: 12 additions & 5 deletions rscanner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# Unreleased
## Unreleased

-
# 0.4.1 (29. May, 2023)

## 0.5.0 (2023/12/12)

- **pref:** improve scan `ip` speed
- **added:** add `snafu` to replace `this-error` to improve error handle


## 0.4.1 (2023/05/29)
- **changed:** improve receive packets speed

# 0.4.0 (28. May, 2023)
## 0.4.0 (2023/05/28)

- **added:** add `arp` scan support
- **changed:** move `parse.rs, sockets_iter.rs` into `setting` directory

# 0.3.0 (10. May, 2023)
## 0.3.0 (2023/05/19)

- **added:** add common trait named `SocketScanner` for `tcp/udp` scan
- **changed:** change `rscanner/execute/tcp` to `impl SocketScanner`
- **added:** add `udp` scanner

# 0.2.1(19. May, 2023)
## 0.2.1(2023/05/19

- **added:** `icmp`, `tcp` scan support
- **added:** system default limit change
8 changes: 4 additions & 4 deletions rscanner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rscanner"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
categories = ["asynchronous", "command-line-utilities", "network-programming"]
description = "Fast scan network by sending icmp, tcp, udp packets, inspired by nmap but doesn't depend on nmap"
Expand All @@ -14,15 +14,15 @@ repository = "https://github.com/gongzhengyang/rscan"
[dependencies]
anyhow = "1.0.71"
async-trait = "0.1"
cached = "0.46"
clap = { version = "4.2", features = ["derive"] }
hashbrown = "0.14"
ipnetwork = "0.20"
itertools = "0.12"
itertools = "0.11"
pnet = "0.34"
pnet_transport = "0.34"
rand = "0.8"
rlimit = "0.10"
serde = { version = "1", features = ["derive"] }
snafu = "0.7"
thiserror = "1.0"
tokio = { version = "1", features = ["full", "tracing"] }
tracing = "0.1"

0 comments on commit 3284fba

Please sign in to comment.