Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 20, 2022
1 parent 506a310 commit 2cc852a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(css/parser)** Fix parsing of at rules (#3328) ([506a310](https://github.com/swc-project/swc/commit/506a31078aaebf50129658f096bbd5929995205f))

### Performance



- **(node)** Avoid cloning options (#3325) ([8a76935](https://github.com/swc-project/swc/commit/8a76935ca261579f23519d1e2c3b7849ba75a6e0))

## [1.2.133] - 2022-01-20

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 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.48.0"
version = "0.48.1"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -19,6 +19,6 @@ minifier = ["swc_css_minifier"]
swc_css_ast = {version = "0.44.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.46.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.10.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.48.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.48.1", path = "../swc_css_parser"}
swc_css_utils = {version = "0.41.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.43.0", path = "../swc_css_visit"}
2 changes: 1 addition & 1 deletion 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.48.0"
version = "0.48.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
Expand Down

1 comment on commit 2cc852a

@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: 2cc852a Previous: 506a310 Ratio
full_es2015 163999574 ns/iter (± 6223880) 151549158 ns/iter (± 20350111) 1.08
full_es2016 166570042 ns/iter (± 25625475) 161945698 ns/iter (± 18066109) 1.03
full_es2017 149100314 ns/iter (± 28466843) 163951780 ns/iter (± 23030118) 0.91
full_es2018 149502956 ns/iter (± 249649121) 173263738 ns/iter (± 22188126) 0.86
full_es2019 165351790 ns/iter (± 35486732) 174715534 ns/iter (± 29400216) 0.95
full_es2020 152177846 ns/iter (± 6150067) 144205118 ns/iter (± 22958857) 1.06
full_es3 208807540 ns/iter (± 29222408) 195983608 ns/iter (± 27211221) 1.07
full_es5 210828785 ns/iter (± 10453936) 201545914 ns/iter (± 23533991) 1.05
parser 675427 ns/iter (± 15623) 627321 ns/iter (± 18271) 1.08

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

Please sign in to comment.