Skip to content

Commit 451aff7

Browse files
committed
v1.27.0
1 parent 54390b4 commit 451aff7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
[package]
1313
authors = ["Devon Govett <devongovett@gmail.com>"]
1414
name = "lightningcss"
15-
version = "1.0.0-alpha.58"
15+
version = "1.0.0-alpha.59"
1616
description = "A CSS parser, transformer, and minifier"
1717
license = "MPL-2.0"
1818
edition = "2021"
@@ -51,7 +51,7 @@ substitute_variables = ["visitor", "into_owned"]
5151
serde = { version = "1.0.201", features = ["derive"], optional = true }
5252
cssparser = "0.33.0"
5353
cssparser-color = "0.1.0"
54-
parcel_selectors = { version = "0.26.6", path = "./selectors" }
54+
parcel_selectors = { version = "0.27.0", path = "./selectors" }
5555
itertools = "0.10.1"
5656
smallvec = { version = "1.7.0", features = ["union"] }
5757
bitflags = "2.2.1"

napi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Devon Govett <devongovett@gmail.com>"]
33
name = "lightningcss-napi"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
description = "Node-API bindings for Lightning CSS"
66
license = "MPL-2.0"
77
repository = "https://github.com/parcel-bundler/lightningcss"

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
lightningcss-napi = { version = "0.2.1", path = "../napi", features = ["bundler", "visitor"] }
12+
lightningcss-napi = { version = "0.3.0", path = "../napi", features = ["bundler", "visitor"] }
1313
napi = {version = "2.15.4", default-features = false, features = ["compat-mode"]}
1414
napi-derive = "2"
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightningcss",
3-
"version": "1.26.0",
3+
"version": "1.27.0",
44
"license": "MPL-2.0",
55
"description": "A CSS parser, transformer, and minifier written in Rust",
66
"main": "node/index.js",

selectors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parcel_selectors"
3-
version = "0.26.6"
3+
version = "0.27.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/parcel_selectors/"
66
description = "CSS Selectors matching for Rust - forked for lightningcss"

0 commit comments

Comments
 (0)