From c191ae670a5fcaa1bb9e1974253df8f7df8e65ed Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Mon, 28 Oct 2024 01:17:00 +0200 Subject: [PATCH] v0.5.4 (#59) --- bindings/node/Cargo.toml | 6 +++--- bindings/node/package.json | 4 ++-- bindings/python/Cargo.toml | 6 +++--- cli/Cargo.toml | 4 ++-- examples/rust/http/Cargo.toml | 2 +- examples/rust/logging/Cargo.toml | 2 +- rookie-rs/Cargo.toml | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bindings/node/Cargo.toml b/bindings/node/Cargo.toml index 313b9cf..d40ff7f 100644 --- a/bindings/node/Cargo.toml +++ b/bindings/node/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "thewh1teagle_rookie" -version = "0.5.3" +version = "0.5.4" [lib] crate-type = ["cdylib"] @@ -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" diff --git a/bindings/node/package.json b/bindings/node/package.json index 48285aa..c420dc1 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "@rookie-rs/api", - "version": "0.5.3", + "version": "0.5.4", "main": "index.js", "types": "index.d.ts", "napi": { @@ -40,4 +40,4 @@ }, "repository": "https://github.com/thewh1teagle/rookie", "description": "Load cookies from any browser on any platform" -} +} \ No newline at end of file diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 72196f0..1d49a9f 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -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 @@ -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"] } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a455d0e..3dd401c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" diff --git a/examples/rust/http/Cargo.toml b/examples/rust/http/Cargo.toml index 3c9c126..667769d 100644 --- a/examples/rust/http/Cargo.toml +++ b/examples/rust/http/Cargo.toml @@ -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" diff --git a/examples/rust/logging/Cargo.toml b/examples/rust/logging/Cargo.toml index 8f8a5ca..4082fca 100644 --- a/examples/rust/logging/Cargo.toml +++ b/examples/rust/logging/Cargo.toml @@ -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" } diff --git a/rookie-rs/Cargo.toml b/rookie-rs/Cargo.toml index f925d38..bdec488 100644 --- a/rookie-rs/Cargo.toml +++ b/rookie-rs/Cargo.toml @@ -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"