From 38c48da6e2c23d10089689215934c3284550e600 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 18 Mar 2018 18:42:58 -0400 Subject: [PATCH] Bump version: 0.1.4 --- nix/ofborg-carnix.nix | 12 ++++++------ ofborg/Cargo.lock | 2 +- ofborg/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nix/ofborg-carnix.nix b/nix/ofborg-carnix.nix index b9fc6ee..a7c3e57 100644 --- a/nix/ofborg-carnix.nix +++ b/nix/ofborg-carnix.nix @@ -45,7 +45,7 @@ let kernel = buildPlatform.parsed.kernel.name; ) [] (builtins.attrNames feat); in rec { - ofborg = f: ofborg_0_1_3 { features = ofborg_0_1_3_features { ofborg_0_1_3 = f; }; }; + ofborg = f: ofborg_0_1_4 { features = ofborg_0_1_4_features { ofborg_0_1_4 = f; }; }; aho_corasick_0_5_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { crateName = "aho-corasick"; version = "0.5.3"; @@ -413,9 +413,9 @@ rec { sha256 = "1y6qnd9r8ga6y8mvlabdrr73nc8cshjjlzbvnanzyj9b8zzkfwk2"; inherit dependencies buildDependencies features; }; - ofborg_0_1_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { + ofborg_0_1_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { crateName = "ofborg"; - version = "0.1.3"; + version = "0.1.4"; authors = [ "Graham Christensen " ]; src = include [ "Cargo.toml" "Cargo.lock" "src" "test-srcs" "build.rs" ] ./../ofborg; build = "build.rs"; @@ -1342,10 +1342,10 @@ rec { libc_0_2_36.default = true; num_cpus_1_8_0.default = (f.num_cpus_1_8_0.default or true); }) [ libc_0_2_36_features ]; - ofborg_0_1_3 = { features?(ofborg_0_1_3_features {}) }: ofborg_0_1_3_ { + ofborg_0_1_4 = { features?(ofborg_0_1_4_features {}) }: ofborg_0_1_4_ { dependencies = mapFeatures features ([ amqp_0_1_0 either_1_4_0 env_logger_0_4_3 fs2_0_4_3 hubcaps_0_3_16 hyper_0_10_13 hyper_native_tls_0_2_4 log_0_3_8 lru_cache_0_1_1 md5_0_3_6 serde_1_0_27 serde_derive_1_0_27 serde_json_1_0_9 tempfile_2_2_0 uuid_0_4_0 ]); }; - ofborg_0_1_3_features = f: updateFeatures f (rec { + ofborg_0_1_4_features = f: updateFeatures f (rec { amqp_0_1_0.default = true; either_1_4_0.default = true; env_logger_0_4_3.default = true; @@ -1356,7 +1356,7 @@ rec { log_0_3_8.default = true; lru_cache_0_1_1.default = true; md5_0_3_6.default = true; - ofborg_0_1_3.default = (f.ofborg_0_1_3.default or true); + ofborg_0_1_4.default = (f.ofborg_0_1_4.default or true); serde_1_0_27.default = true; serde_derive_1_0_27.default = true; serde_json_1_0_9.default = true; diff --git a/ofborg/Cargo.lock b/ofborg/Cargo.lock index 8d8e92d..dc6f1ed 100644 --- a/ofborg/Cargo.lock +++ b/ofborg/Cargo.lock @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "ofborg" -version = "0.1.2" +version = "0.1.4" dependencies = [ "amqp 0.1.0 (git+https://github.com/grahamc/rust-amqp.git)", "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/ofborg/Cargo.toml b/ofborg/Cargo.toml index 19aa7b3..628219f 100644 --- a/ofborg/Cargo.toml +++ b/ofborg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ofborg" -version = "0.1.3" +version = "0.1.4" authors = ["Graham Christensen "] include = ["Cargo.toml", "Cargo.lock", "src", "test-srcs", "build.rs"] build = "build.rs"