diff --git a/CHANGELOG.md b/CHANGELOG.md
index 222afc9..1b25214 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+
+# [1.11.0](https://github.com/flextype-plugins/form/compare/v1.10.1...v1.11.0) (2021-01-14)
+
+### Features
+
+* **core** update code base for new Flextype 0.9.16
+
+### Bug Fixes
+
+* **fields** fix select_media field
+* **fields** fix select_template field
+
# [1.10.1](https://github.com/flextype-plugins/form/compare/v1.10.0...v1.10.1) (2021-01-07)
diff --git a/README.md b/README.md
index 96f151e..783cdd5 100755
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-
+
Form Plugin to render user forms for Flextype.
@@ -12,7 +12,7 @@ The following dependencies need to be installed for Form Plugin.
| Item | Version | Download |
|---|---|---|
-| [flextype](https://github.com/flextype/flextype) | 0.9.15 | [download](https://github.com/flextype/flextype/releases) |
+| [flextype](https://github.com/flextype/flextype) | 0.9.16 | [download](https://github.com/flextype/flextype/releases) |
| [twig](https://github.com/flextype-plugins/twig) | >=2.0.0 | [download](https://github.com/flextype-plugins/twig/releases) |
| [jquery](https://github.com/flextype-plugins/jquery) | >=1.0.0 | [download](https://github.com/flextype-plugins/jquery/releases) |
@@ -428,7 +428,9 @@ form:
```yaml
title: Default
default_field: title
-icon: 'far fa-file-alt'
+icon:
+ name: "file-alt"
+ set: "fontawesome|solid"
size: 12
form:
name: default
diff --git a/fieldsets/fields/select_media/field.html b/fieldsets/fields/select_media/field.html
index c370d72..033893b 100644
--- a/fieldsets/fields/select_media/field.html
+++ b/fieldsets/fields/select_media/field.html
@@ -1,10 +1,10 @@
-{% set media_files = filesystem().find().in(PATH_PROJECT ~ '/media/entries/' ~ query.id ~ '/').files() %}
+{% set media_files = filesystem().find().depth(0).in(PATH_PROJECT ~ '/media/entries/' ~ query.id ~ '/').files() %}