diff --git a/CHANGELOG.md b/CHANGELOG.md
index 020c6aa0..b5df9121 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [0.3.0] - 2021-04-03
+
### Changed
- Removed `esm` loader in favour of native ESM support.
- Raised minimum NodeJS version from 10 to 12.17.0.
diff --git a/docs/api/ts-log-adapter-gulplog.gulploglogger._constructor_.md b/docs/api/ts-log-adapter-gulplog.gulploglogger._constructor_.md
index 685fde5e..00c9331f 100644
--- a/docs/api/ts-log-adapter-gulplog.gulploglogger._constructor_.md
+++ b/docs/api/ts-log-adapter-gulplog.gulploglogger._constructor_.md
@@ -16,5 +16,5 @@ constructor(prefix?: string);
| Parameter | Type | Description |
| --- | --- | --- |
-| prefix | string
| Optionally annotate logs with a prefix such as the package name to identify log source. |
+| prefix | string | Optionally annotate logs with a prefix such as the package name to identify log source. |
diff --git a/docs/api/ts-log-adapter-gulplog.gulploglogger.md b/docs/api/ts-log-adapter-gulplog.gulploglogger.md
index 3a1b6648..356c55cc 100644
--- a/docs/api/ts-log-adapter-gulplog.gulploglogger.md
+++ b/docs/api/ts-log-adapter-gulplog.gulploglogger.md
@@ -11,6 +11,7 @@
```typescript
export declare class GulpLogLogger implements Logger
```
+Implements: Logger
## Constructors
@@ -22,9 +23,9 @@ export declare class GulpLogLogger implements Logger
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
-| [debug](./ts-log-adapter-gulplog.gulploglogger.debug.md) | | (message?: any, ...optionalParams: any[]) => void
| |
-| [error](./ts-log-adapter-gulplog.gulploglogger.error.md) | | (message?: any, ...optionalParams: any[]) => void
| |
-| [info](./ts-log-adapter-gulplog.gulploglogger.info.md) | | (message?: any, ...optionalParams: any[]) => void
| |
-| [trace](./ts-log-adapter-gulplog.gulploglogger.trace.md) | | (message?: any, ...optionalParams: any[]) => void
| |
-| [warn](./ts-log-adapter-gulplog.gulploglogger.warn.md) | | (message?: any, ...optionalParams: any[]) => void
| |
+| [debug](./ts-log-adapter-gulplog.gulploglogger.debug.md) | | (message?: any, ...optionalParams: any\[\]) => void | |
+| [error](./ts-log-adapter-gulplog.gulploglogger.error.md) | | (message?: any, ...optionalParams: any\[\]) => void | |
+| [info](./ts-log-adapter-gulplog.gulploglogger.info.md) | | (message?: any, ...optionalParams: any\[\]) => void | |
+| [trace](./ts-log-adapter-gulplog.gulploglogger.trace.md) | | (message?: any, ...optionalParams: any\[\]) => void | |
+| [warn](./ts-log-adapter-gulplog.gulploglogger.warn.md) | | (message?: any, ...optionalParams: any\[\]) => void | |
diff --git a/package-lock.json b/package-lock.json
index db477de3..0cf52154 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@userfrosting/ts-log-adapter-gulplog",
- "version": "0.2.0",
+ "version": "0.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 6bc74e1e..67c0a31d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@userfrosting/ts-log-adapter-gulplog",
- "version": "0.2.0",
+ "version": "0.3.0",
"description": "An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",