Skip to content

Commit

Permalink
v0.5.4 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle authored Oct 27, 2024
1 parent 35df545 commit c191ae6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions bindings/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "thewh1teagle_rookie"
version = "0.5.3"
version = "0.5.4"

[lib]
crate-type = ["cdylib"]
Expand All @@ -13,12 +13,12 @@ napi-derive = "2.12.2"


[target.'cfg(windows)'.dependencies]
rookie = { path = "../../rookie-rs", version = "0.5.3", features = [
rookie = { path = "../../rookie-rs", version = "0.5.4", features = [
"appbound",
] }

[target.'cfg(unix)'.dependencies]
rookie = { path = "../../rookie-rs", version = "0.5.3" }
rookie = { path = "../../rookie-rs", version = "0.5.4" }

[build-dependencies]
napi-build = "2.0.1"
Expand Down
4 changes: 2 additions & 2 deletions bindings/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rookie-rs/api",
"version": "0.5.3",
"version": "0.5.4",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down Expand Up @@ -40,4 +40,4 @@
},
"repository": "https://github.com/thewh1teagle/rookie",
"description": "Load cookies from any browser on any platform"
}
}
6 changes: 3 additions & 3 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rookiepy"
version = "0.5.3"
version = "0.5.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -13,10 +13,10 @@ pyo3 = "0.20.3"
pyo3-log = "0.9.0"

[target.'cfg(windows)'.dependencies]
rookie = { path = "../../rookie-rs", version = "0.5.3", features = [
rookie = { path = "../../rookie-rs", version = "0.5.4", features = [
"appbound",
"pyo3",
] }

[target.'cfg(unix)'.dependencies]
rookie = { path = "../../rookie-rs", version = "0.5.3", features = ["pyo3"] }
rookie = { path = "../../rookie-rs", version = "0.5.4", features = ["pyo3"] }
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cli"
version = "0.5.3"
version = "0.5.4"
edition = "2021"

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
tracing-subscriber = "0.3.18"
lazy_static = "1.4.0"
rookie = { path = "../rookie-rs", version = "0.5.3" }
rookie = { path = "../rookie-rs", version = "0.5.4" }
serde_json = "1.0.107"
2 changes: 1 addition & 1 deletion examples/rust/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ edition = "2021"
[dependencies]
regex = "1.9.5"
reqwest = { version = "0.11.20", features = ["blocking"] }
rookie = { path = "../../../rookie-rs", version = "0.5.3" }
rookie = { path = "../../../rookie-rs", version = "0.5.4" }
tracing-subscriber = "0.3.18"
2 changes: 1 addition & 1 deletion examples/rust/logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
tracing-subscriber = "0.3.18"
rookie = { path = "../../../rookie-rs", version = "0.5.3" }
rookie = { path = "../../../rookie-rs", version = "0.5.4" }
2 changes: 1 addition & 1 deletion rookie-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rookie"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
description = "Load cookie from your web browsers"
license-file = "../MIT-LICENSE.txt"
Expand Down

0 comments on commit c191ae6

Please sign in to comment.