diff --git a/Cargo.toml b/Cargo.toml index 3647301..c19859c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "dav1d" readme = "README.md" repository = "https://github.com/rust-av/dav1d-rs" -version = "0.2.0" +version = "0.3.0" [dependencies] dav1d-sys = { version = "0.2.0", path = "dav1d-sys" } diff --git a/README.md b/README.md index 645a2ff..ce8e3e2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ By default the bindings are generated using the headers and libraries that ought ## TODO - [x] Simple bindings -- [ ] Safe abstraction +- [x] Safe abstraction - [ ] Examples [1]: https://github.com/rust-lang-nursery/rust-bindgen diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 3531897..2f36c5b 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luca Barbato "] edition = "2018" [dependencies] -dav1d = { path = "..", version = "0.2.0" } +dav1d = { path = "..", version = "0.3.0" } bitstream-io = "0.8" log = "0.4" structopt = "0.3"