Skip to content

Commit b9f0d0e

Browse files
committed
Prepare version to 0.5.0
1 parent a2c2144 commit b9f0d0e

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## Version 0.5.0
4+
**2024-11-08**
5+
6+
- Remove url GitHub header and update example image by @joaolfp - #52
7+
- Update example and tokio version in Cargo.toml by @joaolfp - #51
8+
- Update Rust crate tokio to v1.41.1 by @renovatebot - #50
9+
- Update Rust crate scraper to 0.21.0 by @renovatebot - #49
10+
- Update Rust crate reqwest to v0.12.9 by @renovatebot - #48
11+
- Adjust files and code by @joaolfp - #47
12+
- Update Rust crate regex to v1.11.1 by @renovatebot - #46
13+
- Bump regex from 1.11.0 to 1.11.1 by @dependabot - #45
14+
315
## Version 0.4.0
416
**2024-10-22**
517

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "injectsql"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = ["João Lucas <[email protected]>"]
66
license = "MIT"
@@ -10,7 +10,7 @@ repository = "https://github.com/heroesofcode/inject-sql"
1010
exclude = [".github/**"]
1111

1212
[dependencies]
13-
reqwest = { version = "0.12.8", features = ["json"] }
13+
reqwest = { version = "0.12.9", features = ["json"] }
1414
tokio = { version = "1.41.1", features = ["full"] }
1515
scraper = "0.21.0"
1616
regex = "1.11.1"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async fn show_result(url: &str, payload_type: &str) -> String {
132132

133133
fn check_version() {
134134
let _app = Command::new("injectsql")
135-
.version("0.3.0")
135+
.version("0.5.0")
136136
.ignore_errors(true)
137137
.get_matches();
138138
}

0 commit comments

Comments
 (0)