From 1f46bc4d8148a623c45229f64a4e91debf438fc6 Mon Sep 17 00:00:00 2001 From: Lauren Voswinkel Date: Mon, 11 May 2020 14:55:10 -0700 Subject: [PATCH] Update CHANGELOG.md for 0.6.0 release --- CHANGELOG.md | 12 ++++++++++++ lib/vault/rails/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eeca9a1..cd0a2deb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Vault Rails Changelog +## v0.6.0 (May 11th, 2020) + +IMPROVEMENTS + +- Added support for Rails 5.2+ (including 6.0+) +- Added ciphertext prefixes in development/test environments to more closely resemble production environments +- Added single-decrypt functionality to allow clients to request individual attributes rather than exposing an entire model with one call + +BREAKING CHANGES + +- Ciphertext prefixes may break development environments for some users. If this occurs, a restart may fix the issue. Feel free to let the maintainers know if this is not the case. + ## v0.5.0 (June 20th, 2019) IMPROVEMENTS diff --git a/lib/vault/rails/version.rb b/lib/vault/rails/version.rb index 0e5a0a05..715ac649 100644 --- a/lib/vault/rails/version.rb +++ b/lib/vault/rails/version.rb @@ -1,5 +1,5 @@ module Vault module Rails - VERSION = "0.5.0" + VERSION = "0.6.0" end end