From 4028d4d9026750b31b813ecb4ca5387dba8dd396 Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Wed, 19 Apr 2023 17:33:22 -0400 Subject: [PATCH] v1.20.0 --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- derive/Cargo.toml | 2 +- package.json | 2 +- selectors/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0217fec0..cdd8901d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -778,7 +778,7 @@ dependencies = [ [[package]] name = "lightningcss" -version = "1.0.0-alpha.40" +version = "1.0.0-alpha.41" dependencies = [ "ahash", "assert_cmd", @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "lightningcss-derive" -version = "1.0.0-alpha.37" +version = "1.0.0-alpha.38" dependencies = [ "proc-macro2", "quote", @@ -1034,7 +1034,7 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" [[package]] name = "parcel_selectors" -version = "0.25.2" +version = "0.25.3" dependencies = [ "bitflags", "cssparser", diff --git a/Cargo.toml b/Cargo.toml index 25cda19f..5cbe69aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ [package] authors = ["Devon Govett "] name = "lightningcss" -version = "1.0.0-alpha.40" +version = "1.0.0-alpha.41" description = "A CSS parser, transformer, and minifier" license = "MPL-2.0" edition = "2021" @@ -47,7 +47,7 @@ substitute_variables = ["visitor", "into_owned"] [dependencies] serde = { version = "1.0.123", features = ["derive"], optional = true } cssparser = "0.29.1" -parcel_selectors = { version = "0.25.2", path = "./selectors" } +parcel_selectors = { version = "0.25.3", path = "./selectors" } itertools = "0.10.1" smallvec = { version = "1.7.0", features = ["union"] } bitflags = "1.3.2" @@ -64,7 +64,7 @@ browserslist-rs = { version = "0.7.0", optional = true } rayon = { version = "1.5.1", optional = true } dashmap = { version = "5.0.0", optional = true } serde_json = { version = "1.0.78", optional = true } -lightningcss-derive = { version = "1.0.0-alpha.37", path = "./derive", optional = true } +lightningcss-derive = { version = "1.0.0-alpha.38", path = "./derive", optional = true } schemars = { version = "0.8.11", features = ["smallvec"], optional = true } [target.'cfg(target_os = "macos")'.dependencies] diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 0e77a3c7..ac9d4ed8 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Devon Govett "] name = "lightningcss-derive" description = "Derive macros for lightningcss" -version = "1.0.0-alpha.37" +version = "1.0.0-alpha.38" license = "MPL-2.0" edition = "2021" repository = "https://github.com/parcel-bundler/lightningcss" diff --git a/package.json b/package.json index 11d4ef1b..78f7930c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lightningcss", - "version": "1.19.0", + "version": "1.20.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 98037229..9f37d465 100644 --- a/selectors/Cargo.toml +++ b/selectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parcel_selectors" -version = "0.25.2" +version = "0.25.3" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/parcel_selectors/" description = "CSS Selectors matching for Rust - forked for lightningcss"