diff --git a/CHANGELOG b/CHANGELOG index 026b1da..b1f8b5d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v0.3.2 (2025-07-14) + * Update dependencies & update to rust edition 2024 + * Strip control characters when printing captured banner + * Use tracing instead of env_logger crate for logging v0.3.1 (2023-12-22) * Update dependencies v0.3.0 (2023-05-31) diff --git a/Cargo.lock b/Cargo.lock index 67f65f7..2883e5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -445,7 +445,7 @@ dependencies = [ [[package]] name = "pscan" -version = "0.3.1" +version = "0.3.2" dependencies = [ "base64", "cidr", diff --git a/Cargo.toml b/Cargo.toml index 771e6ed..b7af021 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pscan" -version = "0.3.1" +version = "0.3.2" authors = ["SensorFleet R&D "] homepage = "https://github.com/sensorfleet/pscan" repository = "https://github.com/sensorfleet/pscan" diff --git a/src/config.rs b/src/config.rs index fe1bce9..d6d9f1a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -21,7 +21,7 @@ pub const ARG_VERBOSE: &str = "verbose"; pub const ARG_CONCURRENT_HOSTS: &str = "concurrent-hosts"; /// Current version -pub const PSCAN_VERSION: &str = "0.3.1"; +pub const PSCAN_VERSION: &str = "0.3.2"; /// Build command line arguments for the program. pub fn build_commandline_args() -> clap::Command {