diff --git a/CHANGELOG.md b/CHANGELOG.md index 42748b01b..d4f687296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.4.2] - 2020-02-21 ### Fixed - `runway.cfngin.commands.__init__` import of `__version__` through the stacker shim -- `stacker.variables` import error by adding a shim to `runway.variables` +- `stacker.variables` import error by adding a shim to `runway.variables` ## [1.4.1] - 2020-02-20 ### Fixed @@ -702,7 +704,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - Fix changed CFN parameters not being displayed during `runway plan`. -[Unreleased]: https://github.com/onicagroup/runway/compare/v1.4.1...HEAD +[Unreleased]: https://github.com/onicagroup/runway/compare/v1.4.2...HEAD +[1.4.2]: https://github.com/onicagroup/runway/compare/v1.4.1...v1.4.2 [1.4.1]: https://github.com/onicagroup/runway/compare/v1.4.0...v1.4.1 [1.4.0]: https://github.com/onicagroup/runway/compare/v1.3.7...v1.4.0 [1.3.7]: https://github.com/onicagroup/runway/compare/v1.3.6...v1.3.7 diff --git a/runway/__init__.py b/runway/__init__.py index 6917321f3..89e1b0819 100644 --- a/runway/__init__.py +++ b/runway/__init__.py @@ -6,4 +6,4 @@ sys.modules['stacker'] = cfngin # shim to remove stacker dependency sys.modules['stacker.variables'] = variables # shim to support standard variables -__version__ = '1.4.1' +__version__ = '1.4.2'