diff --git a/.docs/about/release-notes.md b/.docs/about/release-notes.md index 4c27dac7..292f2be2 100644 --- a/.docs/about/release-notes.md +++ b/.docs/about/release-notes.md @@ -3,6 +3,18 @@ Release early, release often --- +## Version 0.3.5 (2016/12/07) +This build updates the libStorage model and EBS driver to function with a +custom encryption key for encrypting volumes as well as includes a fix for +determining an EFS instance's security groups. + +### Enhancements +* Custom encryption key support ([#355](https://github.com/codedellemc/libstorage/issues/355), [#358](https://github.com/codedellemc/libstorage/issues/358),) +* Support for build-tag driven driver inclusion ([#356](https://github.com/codedellemc/libstorage/issues/356)) + +### Bug Fixes +* EFS security group ID fix ([#354](https://github.com/codedellemc/libstorage/pull/354)) + ## Version 0.3.4 (2016/12/02) This is a minor release that restricts some initialization logging so that it only appears if the environment variable `LIBSTORAGE_DEBUG` is set to a diff --git a/VERSION b/VERSION index 42045aca..c2c0004f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.4 +0.3.5 diff --git a/drivers/storage/libstorage/libstorage_driver_funcs.go b/drivers/storage/libstorage/libstorage_driver_funcs.go index 93d80e56..9f7d496c 100644 --- a/drivers/storage/libstorage/libstorage_driver_funcs.go +++ b/drivers/storage/libstorage/libstorage_driver_funcs.go @@ -117,6 +117,7 @@ func (d *driver) VolumeCreate( Name: name, AvailabilityZone: opts.AvailabilityZone, Encrypted: opts.Encrypted, + EncryptionKey: opts.EncryptionKey, IOPS: opts.IOPS, Size: opts.Size, Type: opts.Type,