From 721dfbb023b7fedae20915c10414c1ca9cb23619 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Wed, 11 Jan 2017 18:47:43 -0500 Subject: [PATCH] v0.2.0: Better `run` subcommand The `run` subcommand can now run arbitrary services in arbitrary pods, by popular demand. This may be a breaking change in case of pods and services with the same name, so I've bumped the version number. There are some other minor ergonomic improvements and warnings for several subcommands. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66c5f5e3..71c676bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cage" -version = "0.1.10" +version = "0.2.0" dependencies = [ "boondock 0.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.18.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 39564ac9..9be2124a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cage" -version = "0.1.10" +version = "0.2.0" authors = ["Eric Kidd ", "Derek Kastner "]