Skip to content

Commit

Permalink
Bump version to 0.8.0 for semver reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
DelSkayn committed Nov 19, 2024
1 parent 95e8287 commit 11a19b7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquickjs"
version = "0.7.0"
version = "0.8.0"
authors = ["Mees Delzenne <[email protected]>", "K. <[email protected]>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -12,11 +12,11 @@ categories = ["api-bindings"]
repository = "https://github.com/DelSkayn/rquickjs.git"

[dependencies.rquickjs-core]
version = "0.7.0"
version = "0.8.0"
path = "core"

[dependencies.rquickjs-macro]
version = "0.7.0"
version = "0.8.0"
path = "macro"
optional = true

Expand Down
10 changes: 5 additions & 5 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquickjs-core"
version = "0.7.0"
version = "0.8.0"
authors = ["Mees Delzenne <[email protected]>", "K. <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -10,6 +10,10 @@ keywords = ["quickjs", "ecmascript", "javascript", "es6", "es2020"]
categories = ["api-bindings"]
repository = "https://github.com/DelSkayn/rquickjs.git"

[dependencies.rquickjs-sys]
version = "0.8.0"
path = "../sys"

[dependencies.phf]
version = "0.11"
optional = true
Expand All @@ -30,10 +34,6 @@ optional = true
version = "0.4"
optional = true

[dependencies.rquickjs-sys]
version = "0.7.0"
path = "../sys"

[dependencies.dlopen]
version = "0.1"
optional = true
Expand Down
20 changes: 10 additions & 10 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquickjs-macro"
version = "0.7.0"
version = "0.8.0"
authors = ["K. <[email protected]>", "Mees Delzenne <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -22,6 +22,11 @@ fnv = "1"
indexmap = "2"
convert_case = "0.6"

[dependencies.rquickjs-core]
path = "../core"
version = "0.8.0"
features = ["loader"]

[dependencies.syn]
version = "2"
features = ["full","fold","extra-traits","visit"]
Expand All @@ -34,19 +39,14 @@ optional = true
version = "0.11"
optional = true

[dependencies.rquickjs-core]
path = "../core"
version = "0.7.0"
features = ["loader"]

[dev-dependencies.difference]
version = "2"

[dev-dependencies.rquickjs]
path = ".."
version = "0.7.0"
version = "0.8.0"
features = ["macro", "classes", "properties", "futures","phf"]

[dev-dependencies.difference]
version = "2"

[dev-dependencies.async-std]
version = "1"
features = ["attributes"]
Expand Down
2 changes: 1 addition & 1 deletion sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquickjs-sys"
version = "0.7.0"
version = "0.8.0"
authors = ["Mees Delzenne <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 11a19b7

Please sign in to comment.