diff --git a/CHANGELOG.md b/CHANGELOG.md
index de0d516..336f4ce 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 0.1.4
+
+* Steps can now access the url of releases with the `url` output of this Action [#28](https://github.com/softprops/action-gh-release/pull/28)
+* Added basic GitHub API retry support to manage API turbulance [#26](https://github.com/softprops/action-gh-release/pull/26)
+
 ## 0.1.3
 
 * Fixed where `with: body_path` was not being used in generated GitHub releases
diff --git a/README.md b/README.md
index f5a63c5..c539de3 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,6 @@ jobs:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 ```
 
-
 ### ⬆️ Uploading release assets
 
 You can can configure a number of options for your
@@ -188,6 +187,17 @@ The following are optional as `step.with` keys
 
 💡When providing a `body` and `body_path` at the same time, `body_path` will be attempted first, then falling back on `body` if the path can not be read from.
 
+#### outputs
+
+The following outputs can be accessed via `${{ steps.<step-id>.outputs }}` from this action
+
+| Name        | Type    | Description                                                     |
+|-------------|---------|-----------------------------------------------------------------|
+| `url`       | String  | Github.com URL for the release                                  |
+
+
+
+
 #### environment variables
 
 The following are *required* as `step.env` keys
diff --git a/package-lock.json b/package-lock.json
index bc60c2f..b4c5b1d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "action-gh-release",
-  "version": "0.1.3",
+  "version": "0.1.4",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/package.json b/package.json
index e80c5ed..367eb21 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "action-gh-release",
-  "version": "0.1.3",
+  "version": "0.1.4",
   "private": true,
   "description": "GitHub Action for creating GitHub Releases",
   "main": "lib/main.js",