diff --git a/CHANGELOG.md b/CHANGELOG.md index f3bd0a5..dbe6a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ ## [HEAD](https://github.com/kigster/sym/tree/HEAD) -[Changes since the last tag](https://github.com/kigster/sym/compare/v2.7.0...HEAD) +[Changes since the last tag](https://github.com/kigster/sym/compare/v2.8.4...HEAD) + +## [v2.8.4](https://github.com/kigster/sym/tree/v2.8.4) (2018-04-12) +[Full Changelog](https://github.com/kigster/sym/compare/v2.8.0...v2.8.4) + + - Fixed CircleCI + - made BASH completions faster ## [v2.8.0](https://github.com/kigster/sym/tree/v2.8.0) (2018-01-05) [Full Changelog](https://github.com/kigster/sym/compare/v2.7.0...v2.8.0) diff --git a/lib/sym/version.rb b/lib/sym/version.rb index 5503258..b553583 100644 --- a/lib/sym/version.rb +++ b/lib/sym/version.rb @@ -1,5 +1,5 @@ module Sym - VERSION = '2.8.3' + VERSION = '2.8.4' DESCRIPTION = <<-eof Sym is a ruby library (gem) that offers both the command line interface (CLI) and a set of rich Ruby APIs, which make it rather trivial to add encryption and decryption of sensitive data to your development or deployment flow. As a layer of additional security, you can encrypt the private key itself with a password. Unlike many other existing encryption tools, Sym focuses on getting out of the way — by offering its streamlined interface, hoping to make encryption of application secrets nearly completely transparent to the developers. For the data encryption Sym uses a symmetric 256-bit key with the AES-256-CBC cipher, same cipher as used by the US Government. For password-protecting the key Sym uses AES-128-CBC cipher. The resulting data is zlib-compressed and base64-encoded. The keys are also base64 encoded for easy copying/pasting/etc.