Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit bd7b1b3

Browse files
author
Joe Grund
authored
bump ZFS to 0.7.9 (#61)
* bump ZFS to 0.7.9 Signed-off-by: Joe Grund <joe.grund@intel.com> * fixup travis file Signed-off-by: Joe Grund <joe.grund@intel.com>
1 parent ab41039 commit bd7b1b3

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ sudo: required
22
language: generic
33
services:
44
- docker
5-
5+
addons:
6+
apt:
7+
update: true
68
jobs:
79
include:
810
- stage: test

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libzfs-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libzfs-sys"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
description = "Rust bindings to libzfs"
55
license = "MIT"
66
repository = "https://github.com/intel-hpdd/rust-libzfs"

libzfs-sys/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# libzfs-sys
22

3-
Bindings to libzfs 0.7.8. Uses [bindgen](https://github.com/rust-lang-nursery/rust-bindgen).
3+
Bindings to libzfs 0.7.9. Uses [bindgen](https://github.com/rust-lang-nursery/rust-bindgen).
44

55
## Overview
66

@@ -9,7 +9,7 @@ to the src dir. To rebuild bindings run `cargo build`.
99

1010
## ZFS version
1111

12-
These bindings were compiled against ZFS 0.7.8. As `libzfs` is not a stable interface,
12+
These bindings were compiled against ZFS 0.7.9. As `libzfs` is not a stable interface,
1313
they should only be used against this version.
1414

1515
## OS

libzfs-sys/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ fn main() {
9393
.whitelist_function("zfs_validate_name")
9494
.whitelist_function("zprop_free_list")
9595
.clang_arg("-I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include/")
96-
.clang_arg("-I/usr/src/zfs-0.7.8/lib/libspl/include/")
97-
.clang_arg("-I/usr/src/zfs-0.7.8/include/")
96+
.clang_arg("-I/usr/src/zfs-0.7.9/lib/libspl/include/")
97+
.clang_arg("-I/usr/src/zfs-0.7.9/include/")
9898
.generate()
9999
.expect("Unable to generate bindings");
100100

libzfs-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! to the src dir. To rebuild bindings run `cargo build`.
1616
//!
1717
//! ## ZFS version
18-
//! These bindings were compiled against ZFS 0.7.8. As `libzfs` is not a stable interface,
18+
//! These bindings were compiled against ZFS 0.7.9. As `libzfs` is not a stable interface,
1919
//! they should only be used against this version.
2020
//!
2121
//! ## OS

libzfs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "libzfs"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["IML Team <iml@intel.com>"]
55
description = "Rust wrapper around libzfs-sys"
66
license = "MIT"
77

88
[dependencies]
9-
libzfs-sys = { path = "../libzfs-sys", version = "0.5.5" }
9+
libzfs-sys = { path = "../libzfs-sys", version = "0.5.6" }
1010
nvpair-sys = "0.1"
1111
serde = "1.0"
1212
serde_derive = "1.0"

0 commit comments

Comments
 (0)