Skip to content

Commit db67435

Browse files
committed
chore: Publish crates
1 parent 2dc31d9 commit db67435

File tree

10 files changed

+42
-39
lines changed

10 files changed

+42
-39
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626

2727

2828

29+
- **(css/ast)** Add `/` to the delimiters (#3402) ([2dc31d9](https://github.com/swc-project/swc/commit/2dc31d9d142a4e76529507596bc476590b4a26e9))
30+
31+
2932
- **(css/codegen)** Implement `minify: true` (#3369) ([0537ef1](https://github.com/swc-project/swc/commit/0537ef1a1170da5c693a36cd20fd2b089a8a3618))
3033

3134

Cargo.lock

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

crates/swc_css/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.57.2"
9+
version = "0.58.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
1616
minifier = ["swc_css_minifier"]
1717

1818
[dependencies]
19-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
20-
swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
21-
swc_css_minifier = {version = "0.19.0", path = "../swc_css_minifier", optional = true}
22-
swc_css_parser = {version = "0.57.2", path = "../swc_css_parser"}
23-
swc_css_utils = {version = "0.50.0", path = "../swc_css_utils/"}
24-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
19+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
20+
swc_css_codegen = {version = "0.56.0", path = "../swc_css_codegen"}
21+
swc_css_minifier = {version = "0.20.0", path = "../swc_css_minifier", optional = true}
22+
swc_css_parser = {version = "0.58.0", path = "../swc_css_parser"}
23+
swc_css_utils = {version = "0.51.0", path = "../swc_css_utils/"}
24+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}

crates/swc_css_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_ast"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.53.0"
9+
version = "0.54.0"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

crates/swc_css_codegen/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_codegen"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.55.0"
9+
version = "0.56.0"
1010

1111
[dependencies]
1212
auto_impl = "0.5.0"
1313
bitflags = "1.3.2"
1414
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
1515
swc_common = {version = "0.17.0", path = "../swc_common"}
16-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
16+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
1717
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
1818

1919
[dev-dependencies]
20-
swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
21-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
20+
swc_css_parser = {version = "0.58.0", path = "../swc_css_parser"}
21+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}
2222
testing = {version = "0.18.0", path = "../testing"}

crates/swc_css_minifier/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_minifier"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.19.0"
9+
version = "0.20.0"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
1414
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
1515
swc_common = {version = "0.17.0", path = "../swc_common"}
16-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
17-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
16+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
17+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}
1818

1919
[dev-dependencies]
20-
swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
21-
swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
20+
swc_css_codegen = {version = "0.56.0", path = "../swc_css_codegen"}
21+
swc_css_parser = {version = "0.58.0", path = "../swc_css_parser"}
2222
testing = {version = "0.18.0", path = "../testing"}

crates/swc_css_parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_parser"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.57.2"
9+
version = "0.58.0"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[features]
@@ -17,10 +17,10 @@ bitflags = "1.2.1"
1717
lexical = "5.2.2"
1818
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
1919
swc_common = {version = "0.17.0", path = "../swc_common"}
20-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
20+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
2121

2222
[dev-dependencies]
2323
serde = "1.0.127"
2424
serde_json = "1.0.66"
25-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
25+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}
2626
testing = {version = "0.18.0", path = "../testing"}

crates/swc_css_utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_utils"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.50.0"
9+
version = "0.51.0"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
1313
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
1414
swc_common = {version = "0.17.0", path = "../swc_common"}
15-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
16-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
15+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
16+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}

crates/swc_css_visit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_visit"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.52.0"
9+
version = "0.53.0"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
1414
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
1515
swc_common = {version = "0.17.0", path = "../swc_common"}
16-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
16+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
1717
swc_visit = {version = "0.3.0", path = "../swc_visit"}

crates/swc_stylis/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_stylis"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.54.0"
9+
version = "0.55.0"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
1414
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
1515
swc_common = {version = "0.17.0", path = "../swc_common"}
16-
swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
17-
swc_css_utils = {version = "0.50.0", path = "../swc_css_utils/"}
18-
swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
16+
swc_css_ast = {version = "0.54.0", path = "../swc_css_ast"}
17+
swc_css_utils = {version = "0.51.0", path = "../swc_css_utils/"}
18+
swc_css_visit = {version = "0.53.0", path = "../swc_css_visit"}
1919

2020
[dev-dependencies]
21-
swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
22-
swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
21+
swc_css_codegen = {version = "0.56.0", path = "../swc_css_codegen"}
22+
swc_css_parser = {version = "0.58.0", path = "../swc_css_parser"}
2323
testing = {version = "0.18.0", path = "../testing"}

0 commit comments

Comments
 (0)