Bump version

This commit is contained in:
Felix Krull 2019-06-13 22:07:32 +02:00 committed by Colin Walters
parent 6a86340e9f
commit 1a301faa59
2 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ostree" name = "ostree"
version = "0.3.1" version = "0.4.0"
authors = ["Felix Krull"] authors = ["Felix Krull"]
license = "MIT" license = "MIT"

View File

@ -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. > **Note**: this crate was renamed from the `libostree` crate.
## Status ## Status
The bindings are quite incomplete right now. Most of it can be autogenerated, Most bindings that can be auto-generated are being auto-generated by now.
but I simply turned on what I needed and left the rest for later. 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 ## Using
@ -30,7 +31,7 @@ To use the crate, add it to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
ostree = "0.3" ostree = "0.4"
``` ```
To use features from later libostree versions, you need to specify the release To use features from later libostree versions, you need to specify the release
@ -38,7 +39,7 @@ version as well:
```toml ```toml
[dependencies.ostree] [dependencies.ostree]
version = "0.3" version = "0.4"
features = ["v2018_7"] features = ["v2018_7"]
``` ```