chore: Publish crates

This commit is contained in:
SWC Bot 2022-06-12 03:31:05 +00:00
parent bf74d05f3f
commit ddae14d256
8 changed files with 24 additions and 21 deletions

View File

@ -7,6 +7,9 @@
- **(common)** Don't use `get_unchecked` after setting the length to 0 (#4943) ([f479951](https://github.com/swc-project/swc/commit/f479951ef2f1c9eff8e020c9fc46e78e16855a24))
- **(css/parser)** Fix input buffer and improve error recovery (#4948) ([bf74d05](https://github.com/swc-project/swc/commit/bf74d05f3fb6ddb2f29a4808b64860021cbd4f5b))
### Features

12
Cargo.lock generated
View File

@ -3144,7 +3144,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.105.0"
version = "0.106.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3167,7 +3167,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.102.0"
version = "0.103.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3193,7 +3193,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"auto_impl",
"parking_lot",
@ -3212,7 +3212,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.67.0"
version = "0.68.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3226,7 +3226,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.101.4"
version = "0.102.0"
dependencies = [
"bitflags",
"criterion",
@ -3243,7 +3243,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.101.0"
version = "0.102.0"
dependencies = [
"swc_atoms",
"swc_common",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.105.0"
version = "0.106.0"
[package.metadata.docs.rs]
all-features = true
@ -20,8 +20,8 @@ minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.93.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.102.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.67.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.101.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.103.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.68.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.102.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.90.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.92.0", path = "../swc_css_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.102.0"
version = "0.103.0"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
swc_common = { version = "0.18.0", path = "../swc_common", features = [
"sourcemap",
]}
swc_css_parser = {version = "0.101.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.102.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.92.0", path = "../swc_css_visit"}
testing = {version = "0.20.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.11.0"
version = "0.12.0"
[lib]
bench = false
@ -26,5 +26,5 @@ thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = {version = "0.101.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.102.0", path = "../swc_css_parser"}
testing = {version = "0.20.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.67.0"
version = "0.68.0"
[lib]
bench = false
@ -20,6 +20,6 @@ swc_css_utils = { version = "0.90.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.92.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.102.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.101.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.103.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.102.0", path = "../swc_css_parser"}
testing = {version = "0.20.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.101.4"
version = "0.102.0"
[lib]
bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.101.0"
version = "0.102.0"
[lib]
bench = false
@ -20,6 +20,6 @@ swc_css_utils = { version = "0.90.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.92.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.102.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.101.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.103.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.102.0", path = "../swc_css_parser" }
testing = { version = "0.20.0", path = "../testing" }