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 15, 2022
1 parent 3399702 commit 3b7e594
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 39 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -38,6 +38,9 @@
- **(css/ast)** Use correct type for `calc` (#3549) ([b311ace](https://github.com/swc-project/swc/commit/b311aced89dbbcb1605312e3ad5b0715e437bcd8))


- **(css/ast)** Use `SimpleBlock` for `@document` at-rule (#3564) ([3399702](https://github.com/swc-project/swc/commit/3399702b735cebcf19855b01c5b884cb44e06653))


- **(es/lints)** Add this handling support to `no-alert` rule (#3515) ([af82006](https://github.com/swc-project/swc/commit/af8200647bb5f96525bcf3333c7c6889fe69dd5d))


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
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.84.0"
version = "0.85.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.76.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.81.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.46.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.82.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.73.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.77.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.82.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.47.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.83.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.74.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}
2 changes: 1 addition & 1 deletion crates/swc_css_ast/Cargo.toml
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.76.0"
version = "0.77.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
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.81.0"
version = "0.82.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.76.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.77.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.82.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.83.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}
10 changes: 5 additions & 5 deletions crates/swc_css_minifier/Cargo.toml
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.46.0"
version = "0.47.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.76.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.77.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.81.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.82.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.82.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.83.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}
6 changes: 3 additions & 3 deletions crates/swc_css_parser/Cargo.toml
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.82.0"
version = "0.83.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.76.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.77.0", path = "../swc_css_ast"}

[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}
6 changes: 3 additions & 3 deletions crates/swc_css_utils/Cargo.toml
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.73.0"
version = "0.74.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.76.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.77.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}
4 changes: 2 additions & 2 deletions crates/swc_css_visit/Cargo.toml
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.75.0"
version = "0.76.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.76.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.77.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
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.80.0"
version = "0.81.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.76.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.73.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.75.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.77.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.74.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.76.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.81.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.82.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.82.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.83.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}

1 comment on commit 3b7e594

@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: 3b7e594 Previous: d6477a7 Ratio
full_es2015 171463177 ns/iter (± 27778760) 222454001 ns/iter (± 33321978) 0.77
full_es2016 158219735 ns/iter (± 31110040) 223538930 ns/iter (± 31968297) 0.71
full_es2017 177309773 ns/iter (± 32805729) 235559082 ns/iter (± 39459585) 0.75
full_es2018 176581533 ns/iter (± 29070814) 229596253 ns/iter (± 33033290) 0.77
full_es2019 156968135 ns/iter (± 33324817) 215559024 ns/iter (± 40821240) 0.73
full_es2020 145611933 ns/iter (± 19875066) 186643122 ns/iter (± 32316056) 0.78
full_es3 218212117 ns/iter (± 24136688) 289750679 ns/iter (± 35580836) 0.75
full_es5 219122553 ns/iter (± 12852889) 279051286 ns/iter (± 39483818) 0.79
parser 703223 ns/iter (± 27035) 919756 ns/iter (± 291493) 0.76

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

Please sign in to comment.