Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Feb 27, 2022
1 parent 91cf965 commit 3c85a82
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 39 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
- **(css/ast)** Allow more syntax for `@supports` at-rule (#3740) ([9b92eba](https://github.com/swc-project/swc/commit/9b92eba63686fee2176715fad8d072d6d6d34fe9))


- **(css/ast)** Improve type definitions for unicode ranges (#3757) ([91cf965](https://github.com/swc-project/swc/commit/91cf965e07a5382349262c6d6993477fde68aa58))


- **(css/minifier)** Compress `display` (#3706) ([8512719](https://github.com/swc-project/swc/commit/8512719e126d4041133a78e106bce6c7eca30154))


Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions crates/swc_css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.92.0"
version = "0.93.0"

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

[dependencies]
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.89.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.54.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.90.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.81.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.90.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.55.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.82.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
2 changes: 1 addition & 1 deletion crates/swc_css_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.84.0"
version = "0.85.0"

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

Expand Down
8 changes: 4 additions & 4 deletions crates/swc_css_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.89.0"
version = "0.90.0"

[dependencies]
auto_impl = "0.5.0"
bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}

[dev-dependencies]
swc_css_parser = {version = "0.90.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}
10 changes: 5 additions & 5 deletions crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.54.0"
version = "0.55.0"

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

[dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.89.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.90.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.90.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}
6 changes: 3 additions & 3 deletions crates/swc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.0"
version = "0.91.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
Expand All @@ -17,10 +17,10 @@ bitflags = "1.2.1"
lexical = "5.2.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}

[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}
6 changes: 3 additions & 3 deletions crates/swc_css_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.81.0"
version = "0.82.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
4 changes: 2 additions & 2 deletions crates/swc_css_visit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.83.0"
version = "0.84.0"

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

[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"}
12 changes: 6 additions & 6 deletions crates/swc_stylis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_stylis"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.0"
version = "0.89.0"

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

[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.84.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.81.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.83.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.82.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.89.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.90.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.90.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}

2 comments on commit 3c85a82

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 3c85a82 Previous: 91cf965 Ratio
full_es2015 215802379 ns/iter (± 29674763) 171701291 ns/iter (± 8669134) 1.26
full_es2016 221536506 ns/iter (± 43036534) 158713336 ns/iter (± 27292179) 1.40
full_es2017 202409854 ns/iter (± 32054178) 152437458 ns/iter (± 28847202) 1.33
full_es2018 178221713 ns/iter (± 19908232) 152042405 ns/iter (± 31896012) 1.17
full_es2019 203773494 ns/iter (± 40650234) 174950959 ns/iter (± 28672825) 1.16
full_es2020 158519775 ns/iter (± 14046302) 142242661 ns/iter (± 19954513) 1.11
full_es3 228532834 ns/iter (± 24981734) 218802452 ns/iter (± 21002468) 1.04
full_es5 255453688 ns/iter (± 64787362) 217978457 ns/iter (± 30164379) 1.17
parser 860943 ns/iter (± 175960) 671159 ns/iter (± 15878) 1.28

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 3c85a82 Previous: 91cf965 Ratio
full_es2015 192108867 ns/iter (± 8044587) 171701291 ns/iter (± 8669134) 1.12
full_es2016 201329067 ns/iter (± 15952781) 158713336 ns/iter (± 27292179) 1.27
full_es2017 199298955 ns/iter (± 10892516) 152437458 ns/iter (± 28847202) 1.31
full_es2018 194968214 ns/iter (± 13794107) 152042405 ns/iter (± 31896012) 1.28
full_es2019 197985409 ns/iter (± 9274657) 174950959 ns/iter (± 28672825) 1.13
full_es2020 178385269 ns/iter (± 6506084) 142242661 ns/iter (± 19954513) 1.25
full_es3 248426774 ns/iter (± 11671688) 218802452 ns/iter (± 21002468) 1.14
full_es5 243376855 ns/iter (± 22920863) 217978457 ns/iter (± 30164379) 1.12
parser 773483 ns/iter (± 41413) 671159 ns/iter (± 15878) 1.15

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.