From aac1d52df120d479d8353d535d44019a0df316bf Mon Sep 17 00:00:00 2001 From: Asad Salman Date: Wed, 21 Jul 2021 13:39:51 -0400 Subject: [PATCH] added release notes (#264) --- docs/changelog.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index d0f59780..91a8f278 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,9 +2,15 @@ ## Unreleased +## 0.16.1 +* Treat app and library modules the same in Fulladle [PR](https://github.com/runningcode/fladle/pull/262) +* Added fulladleModuleConfig to app modules [PR](https://github.com/runningcode/fladle/pull/260) +!!! Warning "Breaking API Change" + Previously, only app modules could be picked up as root-level modules in Fulladle. This has changed, now either app or library modules can be picked up (though we try app modules first). If a library module is picked up as a the root-level module, it _must_ specifiy a `debugApk` through either the root `fladle` block or the module's own `fulladleModuleConfig` block. + ## 0.16.0 -* Allow excluding modules from Fulladle (TODO ADD LINK) -* Allow configuring extra parameters on additionalTestApks (TODO ADD LINK) +* Allow excluding modules from Fulladle [PR](https://github.com/runningcode/fladle/pull/257) +* Allow configuring extra parameters on additionalTestApks [PR](https://github.com/runningcode/fladle/pull/257) ## 0.15.1 * Allow Flank snapshot usage [PR](https://github.com/runningcode/fladle/pull/238) Thanks [AndrewReitz](https://github.com/AndrewReitz)