Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Feb 7, 2022
1 parent df08e4c commit ec12019
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 @@ -8,6 +8,9 @@
- **(css)** Fix parsing of `@page` at-rule (#3356) ([4853821](https://github.com/swc-project/swc/commit/4853821d004f366c89c1b9122786e26ff923df05))


- **(css/ast)** Fix type definitions for `@document` at-rule (#3468) ([df08e4c](https://github.com/swc-project/swc/commit/df08e4cfd7ed76fcfd00cc8245b13cc328513938))


- **(css/parser)** Report errors of at-rules (#3461) ([e732250](https://github.com/swc-project/swc/commit/e732250cdf74c47faf5321b650a9cea6bd1ab4d4))


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.69.2"
version = "0.70.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.64.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.67.2", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.31.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.68.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.61.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.65.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.68.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.32.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.69.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.62.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.64.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.64.0"
version = "0.65.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.67.2"
version = "0.68.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.64.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.65.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.68.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.69.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.64.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.31.0"
version = "0.32.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.64.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.65.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.64.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.67.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.68.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.68.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.69.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.68.0"
version = "0.69.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.64.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.65.0", path = "../swc_css_ast"}

[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.64.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.61.0"
version = "0.62.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.64.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.65.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.64.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.63.0"
version = "0.64.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.64.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.65.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.66.0"
version = "0.67.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.64.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.61.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.63.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.65.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.62.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.64.0", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.67.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.68.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.68.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.69.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}

1 comment on commit ec12019

@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: ec12019 Previous: 0903899 Ratio
full_es2015 170250754 ns/iter (± 19716588) 215670880 ns/iter (± 17875525) 0.79
full_es2016 176813931 ns/iter (± 21169408) 231063690 ns/iter (± 18029792) 0.77
full_es2017 177922753 ns/iter (± 19843000) 233808057 ns/iter (± 14283003) 0.76
full_es2018 179045889 ns/iter (± 12518899) 232696297 ns/iter (± 15178116) 0.77
full_es2019 176714601 ns/iter (± 9826885) 234538640 ns/iter (± 20247277) 0.75
full_es2020 157786957 ns/iter (± 22565011) 200413113 ns/iter (± 12444220) 0.79
full_es3 219656153 ns/iter (± 44820389) 279417490 ns/iter (± 22865136) 0.79
full_es5 221269978 ns/iter (± 32053495) 288613015 ns/iter (± 21805363) 0.77
parser 715559 ns/iter (± 14395) 920699 ns/iter (± 149707) 0.78

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

Please sign in to comment.