Skip to content

Commit

Permalink
0.8.1 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k authored Jun 5, 2023
1 parent c88943f commit 848848f
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .bmp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 0.8.1
commit: '%.%.%'
files:
README.md: deno_bindgen = "%.%.%"
deno_bindgen/Cargo.toml:
- version = "%.%.%"
- 'deno_bindgen_macro = { path = "../deno_bindgen_macro", version = "%.%.%" }'
deno_bindgen_macro/Cargo.toml: version = "%.%.%"
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.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ test:
cd example && deno run -A ../cli.ts && deno test -A --unstable

bench:
cd example && deno run -A ../cli.ts && deno bench -A --unstable bench.js
cd example && deno run -A ../cli.ts && deno bench -A --unstable bench.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Add the following dependencies to your crate.
```toml
# Cargo.toml
[dependencies]
deno_bindgen = "0.8.0"
deno_bindgen = "0.8.1"
serde = { version = "1", features = ["derive"] }
```

Expand Down
6 changes: 6 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tasks": {
"patch": "deno run --allow-read=. --allow-write=. https://deno.land/x/[email protected]/cli.ts -p",
"minor": "deno run --allow-read=. --allow-write=. https://deno.land/x/[email protected]/cli.ts -m"
}
}
4 changes: 2 additions & 2 deletions deno_bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_bindgen"
version = "0.8.0"
version = "0.8.1"
description = "This tool aims to simplify glue code generation for Deno FFI libraries written in Rust."
documentation = "https://docs.rs/deno_bindgen"
homepage = "https://github.com/denoland/deno_bindgen"
Expand All @@ -15,6 +15,6 @@ edition = "2021"
path = "./lib.rs"

[dependencies]
deno_bindgen_macro = { path = "../deno_bindgen_macro", version = "0.8.0" }
deno_bindgen_macro = { path = "../deno_bindgen_macro", version = "0.8.1" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2 changes: 1 addition & 1 deletion deno_bindgen_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_bindgen_macro"
version = "0.8.0"
version = "0.8.1"
description = "This tool aims to simplify glue code generation for Deno FFI libraries written in Rust."
documentation = "https://docs.rs/deno_bindgen_macro"
homepage = "https://github.com/denoland/deno_bindgen"
Expand Down

0 comments on commit 848848f

Please sign in to comment.