Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
battleoverflow committed May 14, 2023
1 parent fee4ba6 commit c45f8e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mercy"
description = "Mercy is an open-source Rust crate and CLI for building cybersecurity tools, assessment projects, and testing infrastructure."
version = "1.2.22"
version = "2.0.0"
edition = "2021"
author = "azazelm3dj3d"
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Mercy is an open source Rust crate and CLI designed for building cybersecurity t
Since Mercy is a standard crate, it can easily be used in any project already initialized with Cargo. Simply add the following line to your `Cargo.toml` file:

```toml
mercy = "1.2.22"
mercy = "2.0.0"
```

Once the `Cargo.toml` file is updated, you can import the crate and use the provided methods by running `cargo run`. There are lots of different examples available below.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ use mailparse::*;

/// Learn more about the crate
pub fn source() -> String {
const VERSION: &str = "1.2.22";
const VERSION: &str = "2.0.0";
const AUTHOR: &str = "azazelm3dj3d (https://github.com/azazelm3dj3d)";
return format!("Author: {}\nVersion: {}\nDocumentation: https://docs.rs/crate/mercy/latest", AUTHOR, VERSION);
}
Expand Down

0 comments on commit c45f8e7

Please sign in to comment.