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 Dec 20, 2022
1 parent d8df1b5 commit e49d943
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
- **(css/prefixer)** Support `word-wrap` (#6679) ([46241b4](https://github.com/swc-project/swc/commit/46241b4e554b7a6ee090db8e35acd0151e8caf2b))


- **(css/prefixer)** Support `place-*` properties (#6685) ([d8df1b5](https://github.com/swc-project/swc/commit/d8df1b53d13cb25aa8f513f9dc3baeb535fd714e))


- **(es/minifier)** Improve simplification of `?.` (#6681) ([707b1e3](https://github.com/swc-project/swc/commit/707b1e3cd203be22eccc60367dc3c84f62105de5))

### Performance
Expand Down
6 changes: 3 additions & 3 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_core/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_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.49.0"
version = "0.49.1"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -351,7 +351,7 @@ swc_css_codegen = { optional = true, version = "0.141.12", path
swc_css_minifier = { optional = true, version = "0.106.20", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.18.0", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.12", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.17", path = "../swc_css_prefixer" }
swc_css_prefixer = { optional = true, version = "0.142.18", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.128.4", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.130.4", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.95.8", path = "../swc_ecma_ast" }
Expand Down
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.145.0"
version = "0.145.1"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -28,6 +28,6 @@ swc_css_compat = {version = "0.17.0", path = "../swc_css_compat", optional = tru
swc_css_minifier = {version = "0.106.20", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.18.0", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.12", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.17", path = "../swc_css_prefixer", optional = true}
swc_css_prefixer = {version = "0.142.18", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.128.4", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.4", path = "../swc_css_visit"}
2 changes: 1 addition & 1 deletion crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.142.17"
version = "0.142.18"

[lib]
bench = false
Expand Down

0 comments on commit e49d943

Please sign in to comment.