From 56ec11867949886845107d9e19281ab152aa299b Mon Sep 17 00:00:00 2001 From: Stephen Oliver Date: Sat, 1 Apr 2017 20:36:06 -0400 Subject: [PATCH] v0.6.1 --- Cargo.lock | 10 +++++----- SafeDriveSDK.xcodeproj/project.pbxproj | 8 ++++---- Wrappers/Swift/Info.plist | 4 ++-- Wrappers/Swift/Tests/Info.plist | 4 ++-- libsafedrive/Cargo.toml | 2 +- safedrive/Cargo.toml | 2 +- safedrived/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ca6365..355bfb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,10 +1,10 @@ [root] name = "safedrived" -version = "0.6.0" +version = "0.6.1" dependencies = [ "clap 2.22.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libsafedrive 0.6.0", + "libsafedrive 0.6.1", "log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "prettytable-rs 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.9.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -424,7 +424,7 @@ dependencies = [ [[package]] name = "libsafedrive" -version = "0.6.0" +version = "0.6.1" dependencies = [ "bip39 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -945,11 +945,11 @@ dependencies = [ [[package]] name = "safedrive" -version = "0.6.0" +version = "0.6.1" dependencies = [ "chrono 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.22.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libsafedrive 0.6.0", + "libsafedrive 0.6.1", "log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "pbr 1.0.0-alpha.2 (git+https://github.com/infincia/pb.git?branch=logging)", "prettytable-rs 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/SafeDriveSDK.xcodeproj/project.pbxproj b/SafeDriveSDK.xcodeproj/project.pbxproj index af06552..b7730f2 100644 --- a/SafeDriveSDK.xcodeproj/project.pbxproj +++ b/SafeDriveSDK.xcodeproj/project.pbxproj @@ -328,7 +328,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = G738Z89QKM; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1375; + DYLIB_CURRENT_VERSION = 1398; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/dist-x86_64-apple-darwin/include"; FRAMEWORK_VERSION = A; @@ -365,7 +365,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = G738Z89QKM; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1375; + DYLIB_CURRENT_VERSION = 1398; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/dist-x86_64-apple-darwin/include"; FRAMEWORK_VERSION = A; @@ -459,7 +459,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1375; + CURRENT_PROJECT_VERSION = 1398; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -510,7 +510,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1375; + CURRENT_PROJECT_VERSION = 1398; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; diff --git a/Wrappers/Swift/Info.plist b/Wrappers/Swift/Info.plist index 55a0e33..c0835cc 100644 --- a/Wrappers/Swift/Info.plist +++ b/Wrappers/Swift/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - v0.6.0 + v0.6.1 CFBundleSignature ???? CFBundleVersion - 1375 + 1398 NSHumanReadableCopyright Copyright © 2016 SafeDrive. All rights reserved. NSPrincipalClass diff --git a/Wrappers/Swift/Tests/Info.plist b/Wrappers/Swift/Tests/Info.plist index 0ddb2e5..5f1112b 100644 --- a/Wrappers/Swift/Tests/Info.plist +++ b/Wrappers/Swift/Tests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - v0.6.0 + v0.6.1 CFBundleSignature ???? CFBundleVersion - 1375 + 1398 diff --git a/libsafedrive/Cargo.toml b/libsafedrive/Cargo.toml index 126aa36..17cbab7 100644 --- a/libsafedrive/Cargo.toml +++ b/libsafedrive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsafedrive" -version = "0.6.0" +version = "0.6.1" authors = ["Stephen Oliver "] build = "build.rs" workspace = ".." diff --git a/safedrive/Cargo.toml b/safedrive/Cargo.toml index 02c230f..99a76f5 100644 --- a/safedrive/Cargo.toml +++ b/safedrive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safedrive" -version = "0.6.0" +version = "0.6.1" authors = ["Stephen Oliver "] build = "build.rs" workspace = ".." diff --git a/safedrived/Cargo.toml b/safedrived/Cargo.toml index 7874525..8f58391 100644 --- a/safedrived/Cargo.toml +++ b/safedrived/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safedrived" -version = "0.6.0" +version = "0.6.1" authors = ["Stephen Oliver "] build = "build.rs" workspace = ".."