From 99f161a9020b7fbfd5c2b98330309e5788a3977b Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Wed, 8 Jan 2025 23:47:14 -0500 Subject: [PATCH] v1.29.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- napi/Cargo.toml | 4 ++-- node/Cargo.toml | 2 +- package.json | 2 +- selectors/Cargo.toml | 4 ++-- static-self/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65ddfd42..eae59587 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "lightningcss" -version = "1.0.0-alpha.61" +version = "1.0.0-alpha.62" dependencies = [ "ahash 0.8.11", "assert_cmd", @@ -777,7 +777,7 @@ dependencies = [ [[package]] name = "lightningcss-napi" -version = "0.4.1" +version = "0.4.2" dependencies = [ "crossbeam-channel", "cssparser", @@ -956,7 +956,7 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" [[package]] name = "parcel_selectors" -version = "0.28.0" +version = "0.28.1" dependencies = [ "bitflags 2.6.0", "cssparser", @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "static-self" -version = "0.1.1" +version = "0.1.2" dependencies = [ "indexmap 2.7.0", "smallvec", diff --git a/Cargo.toml b/Cargo.toml index 430e37dc..2152859e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] authors = ["Devon Govett "] name = "lightningcss" -version = "1.0.0-alpha.61" +version = "1.0.0-alpha.62" description = "A CSS parser, transformer, and minifier" license = "MPL-2.0" edition = "2021" @@ -62,7 +62,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.28.0", path = "./selectors" } +parcel_selectors = { version = "0.28.1", path = "./selectors" } itertools = "0.10.1" smallvec = { version = "1.7.0", features = ["union"] } bitflags = "2.2.1" @@ -83,7 +83,7 @@ dashmap = { version = "5.0.0", optional = true } serde_json = { version = "1.0.78", optional = true } lightningcss-derive = { version = "=1.0.0-alpha.43", path = "./derive" } schemars = { version = "0.8.19", features = ["smallvec", "indexmap2"], optional = true } -static-self = { version = "0.1.0", path = "static-self", optional = true } +static-self = { version = "0.1.2", path = "static-self", optional = true } [target.'cfg(target_os = "macos")'.dependencies] jemallocator = { version = "0.3.2", features = [ diff --git a/napi/Cargo.toml b/napi/Cargo.toml index e3ec7375..fdca5a68 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Devon Govett "] name = "lightningcss-napi" -version = "0.4.1" +version = "0.4.2" 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.61", path = "../", features = [ +lightningcss = { version = "1.0.0-alpha.62", path = "../", features = [ "nodejs", "serde", ] } diff --git a/node/Cargo.toml b/node/Cargo.toml index 5b54465a..55aa66b8 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -9,7 +9,7 @@ publish = false crate-type = ["cdylib"] [dependencies] -lightningcss-napi = { version = "0.4.1", path = "../napi", features = [ +lightningcss-napi = { version = "0.4.2", path = "../napi", features = [ "bundler", "visitor", ] } diff --git a/package.json b/package.json index a2897fce..bb7eff5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lightningcss", - "version": "1.28.2", + "version": "1.29.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 90a2aab3..2253b797 100644 --- a/selectors/Cargo.toml +++ b/selectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parcel_selectors" -version = "0.28.0" +version = "0.28.1" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/parcel_selectors/" description = "CSS Selectors matching for Rust - forked for lightningcss" @@ -32,7 +32,7 @@ precomputed-hash = "0.1" smallvec = "1.0" serde = { version = "1.0.201", features = ["derive"], optional = true } schemars = { version = "0.8.19", features = ["smallvec"], optional = true } -static-self = { version = "0.1.0", path = "../static-self", optional = true } +static-self = { version = "0.1.2", path = "../static-self", optional = true } [build-dependencies] phf_codegen = "0.11" diff --git a/static-self/Cargo.toml b/static-self/Cargo.toml index fa06f309..c2c62bb9 100644 --- a/static-self/Cargo.toml +++ b/static-self/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "static-self" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["Devon Govett ","Donny "] description = "A trait for values that can be cloned with a static lifetime"