diff --git a/NEWS.md b/NEWS.md
index f31acee..61a4412 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,11 @@
# cssgrid 0.1.0
-* Added a `NEWS.md` file to track changes to the package.
+- Added
+ - `grid_layout()` that creates a CSS Grid Layout container for general purpose
+ - `grid_item()` that creates items in a CSS Grid Layout container.
+ - `grid_rowwise()` that creates a single rowwise layout with CSS Grid.
+ - `grid_colwise()` that creates a single columnwise layout with CSS Grid.
+ - `construct_areas()` that creates CSS values for `grid-template-areas`.
+ This function is implicitly used by `grid_layout()`, but can also be used
+ explicitly and specify the returned value to `areas` argument of `grid_layout()`.
+- Achieved 100% code coverage
diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html
index 1370def..046d538 100644
--- a/docs/LICENSE-text.html
+++ b/docs/LICENSE-text.html
@@ -89,6 +89,9 @@
Responsive designs with cssgrid
+
+
+grid_layout() that creates a CSS Grid Layout container for general purpose
+
+grid_item() that creates items in a CSS Grid Layout container.
+
+grid_rowwise() that creates a single rowwise layout with CSS Grid.
+
+grid_colwise() that creates a single columnwise layout with CSS Grid.
+
+construct_areas() that creates CSS values for grid-template-areas. This function is implicitly used by grid_layout(), but can also be used explicitly and specify the returned value to areas argument of grid_layout().