Skip to content

Commit

Permalink
Merge pull request #972 from agrover/new-version
Browse files Browse the repository at this point in the history
version 0.5.3
  • Loading branch information
agrover authored Jun 1, 2018
2 parents 403bb48 + a039ef8 commit 888127c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
15 changes: 8 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "libstratis"
version = "0.5.2"
version = "0.5.3"
authors = ["Stratis Developers <[email protected]>"]

[dependencies]
dbus = {version = "0.6.1", optional = true}
clap = "2"
nix = "0.10"
devicemapper = "0.20.0"
devicemapper = "0.21.0"
crc = "1"
byteorder = "1"
chrono = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions src/engine/strat_engine/tests/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::path::PathBuf;
use mnt::get_submounts;
use nix::mount::{MntFlags, umount2};

use devicemapper::{DevId, DmFlags};
use devicemapper::{DevId, DmOptions};

use super::super::dm::get_dm;

Expand Down Expand Up @@ -44,7 +44,7 @@ fn dm_stratis_devices_remove() -> Result<()> {
.map(|d| &d.0)
.filter(|n| n.to_string().starts_with("stratis-1"))
{
match get_dm().device_remove(&DevId::Name(n), DmFlags::empty()) {
match get_dm().device_remove(&DevId::Name(n), &DmOptions::new()) {
Ok(_) => progress_made = true,
Err(_) => remain.push(n.to_string()),
}
Expand Down

0 comments on commit 888127c

Please sign in to comment.