diff --git a/Cargo.lock b/Cargo.lock index eed17d06..b1b97132 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -766,7 +766,7 @@ dependencies = [ [[package]] name = "lightningcss" -version = "1.0.0-alpha.55" +version = "1.0.0-alpha.56" dependencies = [ "ahash 0.8.7", "assert_cmd", @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "lightningcss-napi" -version = "0.1.0" +version = "0.2.0" dependencies = [ "crossbeam-channel", "cssparser", @@ -1006,7 +1006,7 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" [[package]] name = "parcel_selectors" -version = "0.26.4" +version = "0.26.5" dependencies = [ "bitflags 2.4.1", "cssparser", diff --git a/Cargo.toml b/Cargo.toml index a298e0b1..e77fa5a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] authors = ["Devon Govett "] name = "lightningcss" -version = "1.0.0-alpha.55" +version = "1.0.0-alpha.56" description = "A CSS parser, transformer, and minifier" license = "MPL-2.0" edition = "2021" @@ -51,7 +51,7 @@ substitute_variables = ["visitor", "into_owned"] serde = { version = "1.0.201", features = ["derive"], optional = true } cssparser = "0.33.0" cssparser-color = "0.1.0" -parcel_selectors = { version = "0.26.4", path = "./selectors" } +parcel_selectors = { version = "0.26.5", path = "./selectors" } itertools = "0.10.1" smallvec = { version = "1.7.0", features = ["union"] } bitflags = "2.2.1" diff --git a/napi/Cargo.toml b/napi/Cargo.toml index b296c3b6..d8415acd 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Devon Govett "] name = "lightningcss-napi" -version = "0.1.0" +version = "0.2.0" description = "Node-API bindings for Lightning CSS" license = "MPL-2.0" repository = "https://github.com/parcel-bundler/lightningcss" @@ -16,7 +16,7 @@ bundler = ["dep:crossbeam-channel", "dep:rayon"] serde = { version = "1.0.201", features = ["derive"] } serde_bytes = "0.11.5" cssparser = "0.33.0" -lightningcss = { version = "1.0.0-alpha.54", path = "../", features = ["nodejs", "serde"] } +lightningcss = { version = "1.0.0-alpha.55", path = "../", features = ["nodejs", "serde"] } parcel_sourcemap = { version = "2.1.1", features = ["json"] } serde-detach = "0.0.1" smallvec = { version = "1.7.0", features = ["union"] } diff --git a/node/Cargo.toml b/node/Cargo.toml index 4f9e8b75..bb472910 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -9,7 +9,7 @@ publish = false crate-type = ["cdylib"] [dependencies] -lightningcss-napi = { version = "0.1.0", path = "../napi", features = ["bundler", "visitor"] } +lightningcss-napi = { version = "0.2.0", path = "../napi", features = ["bundler", "visitor"] } napi = {version = "2.15.4", default-features = false, features = ["compat-mode"]} napi-derive = "2" diff --git a/package.json b/package.json index 740531f3..fa6a3b78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lightningcss", - "version": "1.24.1", + "version": "1.25.0", "license": "MPL-2.0", "description": "A CSS parser, transformer, and minifier written in Rust", "main": "node/index.js", diff --git a/selectors/Cargo.toml b/selectors/Cargo.toml index 481c468b..8cad46af 100644 --- a/selectors/Cargo.toml +++ b/selectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parcel_selectors" -version = "0.26.4" +version = "0.26.5" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/parcel_selectors/" description = "CSS Selectors matching for Rust - forked for lightningcss"