From 53ccb3e59aef2d41290b592c2613256f36281651 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Sat, 12 Sep 2020 13:35:08 -0400 Subject: [PATCH] v0.3.0-alpha.4: `unmount --all` and Vault caching --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37338128..f6dcd720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.3.0-alpha.4 - 2020-09-12 + +### Added + +- We now support `cage source unmount --all` and `cage source unmount s1 s2`. + +### Changed + +- Vault tokens are now cached in the `.cage` directory, making it feasible to use `config/vault.yml` in development mode. +- Sources are no longer mounted by default, for better monorepo support. + ## 0.3.0-alpha.3 - 2020-04-10 ### Added diff --git a/Cargo.lock b/Cargo.lock index 93f4f985..74ba0429 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,7 +184,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cage" -version = "0.3.0-alpha.3" +version = "0.3.0-alpha.4" dependencies = [ "boondock 0.1.0-alpha.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index ed58e660..696c68e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cage" -version = "0.3.0-alpha.3" +version = "0.3.0-alpha.4" authors = ["Eric Kidd ", "Derek Kastner "] edition = "2018"