Skip to content

Commit

Permalink
Prepare version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joaolfp committed Nov 8, 2024
1 parent a2c2144 commit b9f0d0e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## Version 0.5.0
**2024-11-08**

- Remove url GitHub header and update example image by @joaolfp - #52
- Update example and tokio version in Cargo.toml by @joaolfp - #51
- Update Rust crate tokio to v1.41.1 by @renovatebot - #50
- Update Rust crate scraper to 0.21.0 by @renovatebot - #49
- Update Rust crate reqwest to v0.12.9 by @renovatebot - #48
- Adjust files and code by @joaolfp - #47
- Update Rust crate regex to v1.11.1 by @renovatebot - #46
- Bump regex from 1.11.0 to 1.11.1 by @dependabot - #45

## Version 0.4.0
**2024-10-22**

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "injectsql"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
authors = ["João Lucas <[email protected]>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/heroesofcode/inject-sql"
exclude = [".github/**"]

[dependencies]
reqwest = { version = "0.12.8", features = ["json"] }
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1.41.1", features = ["full"] }
scraper = "0.21.0"
regex = "1.11.1"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async fn show_result(url: &str, payload_type: &str) -> String {

fn check_version() {
let _app = Command::new("injectsql")
.version("0.3.0")
.version("0.5.0")
.ignore_errors(true)
.get_matches();
}

0 comments on commit b9f0d0e

Please sign in to comment.