diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
 
 ### Upcoming
 
+### v1.0.0.0
+
+*Major*
+
+* Initial stable release!
+
 ### v0.4.0.0
 
 *Major*
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # werewolf-slack
 
-[![Project Status: Wip - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
+[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
 [![Build Status](https://travis-ci.org/hjwylde/werewolf-slack.svg?branch=master)](https://travis-ci.org/hjwylde/werewolf-slack)
 [![Release](https://img.shields.io/github/release/hjwylde/werewolf-slack.svg)](https://github.com/hjwylde/werewolf-slack/releases/latest)
 [![werewolf-slack on Stackage LTS](https://www.stackage.org/package/werewolf-slack/badge/lts)](https://www.stackage.org/lts/package/werewolf-slack)
@@ -31,14 +31,14 @@
 
 #### Preparing Slack
 
-Set up an Incoming WebHook [here](https://my.slack.com/services/new/incoming-webhook/).
-Make note of the *access token*, we'll be using that soon.
+Set up an Incoming Webhook [here](https://my.slack.com/services/new/incoming-webhook/).
+Make note of the *webhook url*, we'll be using that soon.
 
 Set up a Slash Command (`/werewolf` or similar)
     [here](https://my.slack.com/services/new/slash-commands/).
 The Slash Command should perform a GET request to the server werewolf-slack is going to be hosted
     on.
-Make note of the *validation token* here too.
+Make note of the *token* here too.
 
 #### Installing
 
@@ -71,7 +71,7 @@
 
 werewolf-slack is a simple web server that listens for events from the Slack Slash Command.
 After receiving an event werewolf-slack forwards it on to the werewolf game engine and uses the
-    Incoming WebHook to send back the response.
+    Incoming Webhook to send back the response.
 
 Running werewolf-slack is easiest done using either
     [Docker](https://www.docker.com/) (recommended) or
@@ -81,13 +81,13 @@
 **With Docker:**
 
 ```bash
-docker run -d -p 80:8080 hjwylde/werewolf-slack-docker -t ACCESS_TOKEN -v VALIDATION_TOKEN
+docker run -d -p 80:8080 hjwylde/werewolf-slack-docker -v TOKEN -u WEBHOOK_URL
 ```
 
 **With werewolf-slack:**
 
 ```bash
-werewolf-slack -p 80 -t ACCESS_TOKEN -v VALIDATION_TOKEN &
+werewolf-slack -p 80 -v TOKEN -u WEBHOOK_URL &
 ```
 
 #### Configuration
diff --git a/werewolf-slack.cabal b/werewolf-slack.cabal
--- a/werewolf-slack.cabal
+++ b/werewolf-slack.cabal
@@ -1,5 +1,5 @@
 name:           werewolf-slack
-version:        0.4.0.0
+version:        1.0.0.0
 
 author:         Henry J. Wylde
 maintainer:     public@hjwylde.com
