Skip to content

Commit c9da3cc

Browse files
authored
Merge pull request #74 from thewh1teagle/v0.5.6-beta.0
bump to beta version
2 parents a80787d + 1d0b77e commit c9da3cc

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

bindings/node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "thewh1teagle_rookie"
4-
version = "0.5.5"
4+
version = "0.5.6-beta.0"
55

66
[lib]
77
crate-type = ["cdylib"]
@@ -13,12 +13,12 @@ napi-derive = "2.12.2"
1313

1414

1515
[target.'cfg(windows)'.dependencies]
16-
rookie = { path = "../../rookie-rs", version = "0.5.5", features = [
16+
rookie = { path = "../../rookie-rs", version = "0.5.6-beta.0", features = [
1717
"appbound",
1818
] }
1919

2020
[target.'cfg(unix)'.dependencies]
21-
rookie = { path = "../../rookie-rs", version = "0.5.5" }
21+
rookie = { path = "../../rookie-rs", version = "0.5.6-beta.0" }
2222

2323
[build-dependencies]
2424
napi-build = "2.0.1"

bindings/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rookie-rs/api",
3-
"version": "0.5.5",
3+
"version": "0.5.6-beta.0",
44
"readme": "README.md",
55
"main": "index.js",
66
"types": "index.d.ts",

bindings/python/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rookiepy"
3-
version = "0.5.5"
3+
version = "0.5.6-beta.0"
44
edition = "2021"
55

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

1515
[target.'cfg(windows)'.dependencies]
16-
rookie = { path = "../../rookie-rs", version = "0.5.5", features = [
16+
rookie = { path = "../../rookie-rs", version = "0.5.6-beta.0", features = [
1717
"appbound",
1818
"pyo3",
1919
] }
2020

2121
[target.'cfg(unix)'.dependencies]
22-
rookie = { path = "../../rookie-rs", version = "0.5.5", features = ["pyo3"] }
22+
rookie = { path = "../../rookie-rs", version = "0.5.6-beta.0", features = [
23+
"pyo3",
24+
] }

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "rookie-cli"
3-
version = "0.5.5"
3+
version = "0.5.6-beta.0"
44
edition = "2021"
55

66
[dependencies]
77
clap = { version = "4.4.6", features = ["derive"] }
88
tracing-subscriber = "0.3.18"
99
lazy_static = "1.4.0"
10-
rookie = { path = "../rookie-rs", version = "0.5.5" }
10+
rookie = { path = "../rookie-rs", version = "0.5.6-beta.0" }
1111
serde_json = "1.0.107"
1212

1313
[features]

examples/rust/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ edition = "2021"
99
[dependencies]
1010
regex = "1.9.5"
1111
reqwest = { version = "0.11.20", features = ["blocking"] }
12-
rookie = { path = "../../../rookie-rs", version = "0.5.5" }
12+
rookie = { path = "../../../rookie-rs", version = "0.5.6-beta.0" }
1313
tracing-subscriber = "0.3.18"

rookie-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rookie"
3-
version = "0.5.5"
3+
version = "0.5.6-beta.0"
44
edition = "2021"
55
description = "Load cookie from your web browsers"
66
license-file = "../MIT-LICENSE.txt"

rookie-rs/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.5.5",
2+
"version": "0.5.6-beta.0",
33
"platforms": {
44
"windows": {
55
"chrome": {

0 commit comments

Comments
 (0)