Skip to content

Commit

Permalink
Merge pull request #209 from kwonoj/release-bump
Browse files Browse the repository at this point in the history
build(release): release 0.0.16
  • Loading branch information
kwonoj committed Apr 12, 2023
2 parents f07254c + 45fbbd3 commit f50951a
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 41 deletions.
62 changes: 31 additions & 31 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 package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swc-plugin-coverage-instrument",
"version": "0.0.15",
"version": "0.0.16",
"description": "SWC coverage instrumentation plugin",
"main": "./target/wasm32-wasi/release/swc_plugin_coverage.wasm",
"napi": {
Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "istanbul-oxide"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.15"
version = "0.0.16"

[dependencies]
indexmap = { version = "1.9.2", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/swc-coverage-instrument/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ edition = "2021"
license = "MIT"
name = "swc-coverage-instrument"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.15"
version = "0.0.16"

[dependencies]
istanbul-oxide = { version = "0.0.15", path = "../istanbul-oxide" }
istanbul-oxide = { version = "0.0.16", path = "../istanbul-oxide" }
once_cell = "1.16.0"
regex = "1.7.0"
serde = { version = "1.0.151", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/swc-plugin-coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ edition = "2021"
license = "MIT"
name = "swc-plugin-coverage"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.15"
version = "0.0.16"

[lib]
crate-type = ["cdylib"]

[dependencies]
serde_json = "1.0.90"
swc-coverage-instrument = { version = "0.0.15", path = "../swc-coverage-instrument" }
swc-coverage-instrument = { version = "0.0.16", path = "../swc-coverage-instrument" }
swc_core = { version = "0.75.11", features = ["ecma_plugin_transform"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
2 changes: 1 addition & 1 deletion spec/swc-coverage-custom-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ napi-derive = { version = "2.9.3", default-features = false, features = [
] }
serde = { version = "1.0.151", features = ["derive"] }
serde_json = { version = "1.0.90", features = ["unbounded_depth"] }
swc-coverage-instrument = { version = "0.0.15", path = "../../packages/swc-coverage-instrument" }
swc-coverage-instrument = { version = "0.0.16", path = "../../packages/swc-coverage-instrument" }

swc_core = { version = "0.75.11", features = [
"common_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion spec/swc-coverage-instrument-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ crate-type = ["cdylib"]
[dependencies]
serde = { version = "1.0.151", features = ["derive"] }
serde-wasm-bindgen = "0.4.5"
swc-coverage-instrument = { version = "0.0.15", path = "../../packages/swc-coverage-instrument" }
swc-coverage-instrument = { version = "0.0.16", path = "../../packages/swc-coverage-instrument" }
wasm-bindgen = { version = "0.2.83", features = ["serde-serialize"] }

0 comments on commit f50951a

Please sign in to comment.