Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Sep 29, 2022
1 parent af8236d commit 48b83fb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -32,6 +32,9 @@
- **(es/minifier)** Don't panic on jsx or ts (#5984) ([0067f71](https://github.com/swc-project/swc/commit/0067f719dd0a072ef43e51698f159506287d7f35))


- **(es/minifier)** Remove print ([af8236d](https://github.com/swc-project/swc/commit/af8236d689e29980ef1bc8d7d05ed61e37649b28))


- **(es/parser)** Allow `as` in destructuring assignment (#5948) ([cdd69d0](https://github.com/swc-project/swc/commit/cdd69d0145d22008448f394e8b39ba98291d87fe))


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/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.230.6"
version = "0.230.7"

[lib]
bench = false
Expand Down Expand Up @@ -75,7 +75,7 @@ swc_ecma_loader = { version = "0.41.3", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.157.19", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.157.20", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.122.4", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.172.10", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.196.10", path = "../swc_ecma_transforms", features = [
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_core/Cargo.toml
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.28.7"
version = "0.28.8"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -317,7 +317,7 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }

# swc_* dependencies
binding_macros = { optional = true, version = "0.18.6", path = "../binding_macros" }
swc = { optional = true, version = "0.230.6", path = "../swc" }
swc = { optional = true, version = "0.230.7", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.18", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.190.19", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.14", path = "../swc_cached" }
Expand All @@ -332,7 +332,7 @@ swc_css_visit = { optional = true, version = "0.113.4", path
swc_ecma_ast = { optional = true, version = "0.94.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.127.5", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.41.3", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.157.19", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { optional = true, version = "0.157.20", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.122.4", path = "../swc_ecma_parser" }
swc_ecma_quote_macros = { optional = true, version = "0.33.4", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.111.8", path = "../swc_ecma_transforms_base" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_minifier/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0"
name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.157.19"
version = "0.157.20"

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 48b83fb

Please sign in to comment.