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]
name = "ostree"
version = "0.3.1"
version = "0.4.0"
authors = ["Felix Krull"]
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.
## 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"]
```