From 1a301faa59befc4730e4ebbb60027a7f265824ab Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Thu, 13 Jun 2019 22:07:32 +0200 Subject: [PATCH] Bump version --- rust-bindings/rust/Cargo.toml | 2 +- rust-bindings/rust/README.md | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/rust-bindings/rust/Cargo.toml b/rust-bindings/rust/Cargo.toml index 3eac8eb4..163d592b 100644 --- a/rust-bindings/rust/Cargo.toml +++ b/rust-bindings/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ostree" -version = "0.3.1" +version = "0.4.0" authors = ["Felix Krull"] license = "MIT" diff --git a/rust-bindings/rust/README.md b/rust-bindings/rust/README.md index 20559993..abb3c1ab 100644 --- a/rust-bindings/rust/README.md +++ b/rust-bindings/rust/README.md @@ -12,8 +12,9 @@ along with a layer for deploying them and managing the bootloader configuration. > **Note**: this crate was renamed from the `libostree` crate. ## Status -The bindings are quite incomplete right now. Most of it can be autogenerated, -but I simply turned on what I needed and left the rest for later. +Most bindings that can be auto-generated are being auto-generated by now. +Anything that is not yet supported by the crate probably requires handwritten +bindings. These will most likely be added on an as-needed basis. ## Using @@ -30,7 +31,7 @@ To use the crate, add it to your `Cargo.toml`: ```toml [dependencies] -ostree = "0.3" +ostree = "0.4" ``` To use features from later libostree versions, you need to specify the release @@ -38,7 +39,7 @@ version as well: ```toml [dependencies.ostree] -version = "0.3" +version = "0.4" features = ["v2018_7"] ```