From ab3627cce01e5556b3fe8c2b5e3d92b80bfc74af Mon Sep 17 00:00:00 2001 From: Aaron VonderHaar Date: Thu, 8 Aug 2019 19:34:51 -0700 Subject: [PATCH] Update release notes --- Release Notes/0.8.2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Release Notes/0.8.2.md b/Release Notes/0.8.2.md index 82790f4d8..06ceab6c2 100644 --- a/Release Notes/0.8.2.md +++ b/Release Notes/0.8.2.md @@ -9,9 +9,9 @@ If you still need to work with Elm 0.18 code, you must make sure that either `el ## `exposing (..)` -The feature of automatically expanding `exposing (..)` in `module` lines has been removed, +The feature of automatically expanding `exposing (..)` in `module` lines has been removed. While exposing everything in a module is an anti-pattern for production code, -it can be useful for rapid development sketches. +it can be useful for rapid development sketches when the interfaces of your modules are not important. To replace the old expansion behavior, `elm-format` now allows `module` lines without an `exposing` clause. Such lines will have the `exposing` automatically generated using the same logic that was previously used to expand `exposing (..)`.