Commit 27eb28ed6d6b6ef43d69c6a887fd3fc99c17697f

Stephen Moloney 2016-06-09T14:58:35

version 0.1.1. docs changes.

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1161539..608ca94 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Changelog
 
+## v0.1.1
+
+- No changes to source code. Only documentation changes.
+
+
 ## v0.1.0
 
 - Decouple the `Openstack` component into the `Openstex` repository.
diff --git a/README.md b/README.md
index 9342ec6..8cd7dd5 100644
--- a/README.md
+++ b/README.md
@@ -22,13 +22,13 @@ To use the Openstack components of the OVH API, see [Openstex](https://github.co
 
 | Step 1: Generating the OVH application | Step 2: Setup |
 |---|---|
-| [Mix Task](https://github.com/stephenmoloney/ex_ovh/docs/mix_task_basic.md) (optional) | [Setting up the Client](https://github.com/stephenmoloney/ex_ovh/docs/getting_started_basic.md) |
+| [Mix Task](https://github.com/stephenmoloney/ex_ovh/blob/master/docs/mix_task_basic.md) (optional) | [Setting up the Client](https://github.com/stephenmoloney/ex_ovh/blob/master/docs/getting_started_basic.md) |
 
 #### Example (2) - Recommended way of getting started
 
 | Step 1: Generating the OVH application | Step 2: Setup |
 |---|---|
-| [Mix Task](https://github.com/stephenmoloney/ex_ovh/docs/mix_task_advanced.md) (optional) | [Setting up Clients](https://hexdocs.pm/ex_ovh/doc/getting_started_advanced.md) |
+| [Mix Task](https://github.com/stephenmoloney/ex_ovh/blob/master/docs/mix_task_advanced.md) (optional) | [Setting up Clients](https://hexdocs.pm/ex_ovh/blob/master/docs/getting_started_advanced.md) |
 
 
 ## Usage
diff --git a/docs/getting_started_advanced.md b/docs/getting_started_advanced.md
index 5ee6313..20c8922 100644
--- a/docs/getting_started_advanced.md
+++ b/docs/getting_started_advanced.md
@@ -17,7 +17,7 @@ end
 - Create an OVH account at [OVH](https://www.ovh.com/us/)
 
 - Create an API application at the [OVH API page](https://eu.api.ovh.com/createApp/). Follow the
-  steps outlined by OVH there. Alternatively, there is a [mix task](https://github.com/stephenmoloney/ex_ovh/docs/mix_task_advanced.md) which can help
+  steps outlined by OVH there. Alternatively, there is a [mix task](https://github.com/stephenmoloney/ex_ovh/blob/master/docs/mix_task_advanced.md) which can help
   generate the OVH application.
   
 - Add the configuration settings for the OVH application to your project `config.exs`.
diff --git a/docs/getting_started_basic.md b/docs/getting_started_basic.md
index aeecc6f..f19a70c 100644
--- a/docs/getting_started_basic.md
+++ b/docs/getting_started_basic.md
@@ -20,7 +20,7 @@ end
 - Create an OVH account at [OVH](https://www.ovh.com/us/)
 
 - Create an API application at the [OVH API page](https://eu.api.ovh.com/createApp/). Follow the
-  steps outlined by OVH there. Alternatively, there is a [mix task](https://github.com/stephenmoloney/ex_ovh/docs/mix_task_basic.md) which can help
+  steps outlined by OVH there. Alternatively, there is a [mix task](https://github.com/stephenmoloney/ex_ovh/blob/master/docs/mix_task_basic.md) which can help
   generate the OVH application.
   
 - Add the configuration settings for the OVH application to your project `config.exs`.
diff --git a/mix.exs b/mix.exs
index e56569c..1ef45ea 100644
--- a/mix.exs
+++ b/mix.exs
@@ -5,7 +5,7 @@ defmodule ExOvh.Mixfile do
     [
       app: :ex_ovh,
       name: "ExOvh",
-      version: "0.1.0",
+      version: "0.1.1",
       source_url: "https://github.com/stephenmoloney/ex_ovh",
       elixir: "~> 1.2",
       build_embedded: Mix.env == :prod,
@@ -30,7 +30,7 @@ defmodule ExOvh.Mixfile do
       {:morph, "~> 0.1.0"},
       {:poison, "~> 1.5 or ~> 2.0"},
       {:httpoison, "~> 0.8.0"},
-      {:floki, "~> 0.7.1", optional: :true},
+      {:floki, "~> 0.7.1"},
 
       {:markdown, github: "devinus/markdown", only: :dev},
       {:ex_doc,  "~> 0.11", only: :dev}
@@ -57,10 +57,8 @@ defmodule ExOvh.Mixfile do
     [
     main: "api-reference",
     extras: [
-             "docs/getting_started_basic.md": [path: "getting_started_basic.md", title: "Getting Started (Basic)"],
-             "docs/getting_started_advanced.md": [path: "getting_started_advanced.md", title: "Getting Started (Advanced)"],
-             "docs/mix_task_basic.md": [path: "mix_task_basic.md", title: "Basic Mix Task (Optional)"],
-             "docs/mix_task_advanced.md": [path: "mix_task_advanced.md", title: "Advanced Mix Task (Optional)"]
+             "docs/mix_task_advanced.md": [path: "mix_task_advanced.md", title: "Step 1: Generating the OVH application (Optional)"],
+             "docs/getting_started_advanced.md": [path: "getting_started_advanced.md", title: "Step 2: Setting up client(s)"]
             ]
     ]
   end