Skip to content

Commit 7e63308

Browse files
committed
Added v2.2.0 release config
1 parent 34803f3 commit 7e63308

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
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: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[package]
22
name = "XPManager"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
edition = "2021"
5-
description = "XPManager is a CLI tool specialized in dealing with passwords management and file encryption/decryption."
5+
description = "A fast and efficient CLI tool for managing passwords and encrypting sensitive data."
66
authors = ["Mohaned Sherhan"]
77
license = "MIT"
8-
repository = "https://github.com/Mohaned2023/XPManager"
9-
documentation = "https://github.com/Mohaned2023/XPManager/blob/master/USAGE.md"
10-
homepage = "https://github.com/Mohaned2023/XPManager"
8+
keywords = ["cli", "encryption", "password", "manager"]
9+
repository = "https://github.com/xpmanager/XPManager"
10+
documentation = "https://xpmanager.github.io/docs/intro"
11+
homepage = "https://xpmanager.github.io/"
1112

1213
[[bin]]
1314
name = "xpm"
@@ -36,7 +37,7 @@ tabled = "0.18.0"
3637
maintainer = "Mohaned Sherhan"
3738
copyright = "2025, Mohaned Sherhan"
3839
license-file = ["LICENSE"]
39-
extended-description = """XPManager is a CLI tool specialized in dealing with passwords management and file encryption/decryption."""
40+
extended-description = """A fast and efficient CLI tool for managing passwords and encrypting sensitive data."""
4041
depends = "$auto"
4142
assets = [
4243
["target/release/xpm", "usr/local/bin/", "755"],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ xpm --version
2222
## Cargo:
2323
- Clone the repo:
2424
```sh
25-
$ git clone https://github.com/Mohaned2023/XPManager.git
25+
$ git clone https://github.com/xpmanager/XPManager.git
2626
$ cd XPManager
2727
```
2828
- Run

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ mod errorlib;
1515

1616
fn main() {
1717
let matches = Command::new("xpm")
18-
.about("Password generator, File/Folder encryptor and decryptor, String encoder and decoder.")
19-
.version("2.1.0")
18+
.about("Password manager, File/Folder encryptor, Strings encoder.")
19+
.version("2.2.0")
2020
.author("Mohaned Sherhan")
2121
.subcommands(commands::commands())
2222
.get_matches();

0 commit comments

Comments
 (0)