Commit 18eb827460c143181a674813df95e3d0245f5f1f

Stephen Moloney 2016-06-08T15:08:39

minor changes

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d55070b..1161539 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,11 @@
 # Changelog
 
-## v0.0.2
+## v0.1.0
 
-- Decouple the `Openstack` component into the `Openstex` repository. Only
-requests to the `ExOvh` API can be made with `ExOvh`.
+- Decouple the `Openstack` component into the `Openstex` repository.
+Only requests to the `ExOvh` API can be made with `ExOvh`.
 - Add documentation.
+- Remove no longer used dependency `:secure_random`.
 
 
 ## v0.0.1
diff --git a/README.md b/README.md
index 6e45c74..2e5611d 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,9 @@ ExOvh is an helper library in the [elixir language](http://elixir-lang.org/) for
 
 ## Project Features
 
-- Cache modules (genservers) running in the background which store frequently accessed authentication information.
-- Query modules for making calls to the OVH API.
+- Config supervised Agent running in the background which stores frequently accessed authentication information.
+- Query modules for making building requests to the [Ovh Api](https://api.ovh.com/).
+- `request` functions to send Queries to the [Ovh Api](https://api.ovh.com/).
 
 
 ## Documentation
@@ -52,4 +53,4 @@ This is an unofficial client to the OVH api and is not maintained by OVH.
 
 ## Licence 
 
-MIT
+[MIT Licence](LICENSE.txt)
diff --git a/mix.exs b/mix.exs
index 6220bbc..14e6c82 100644
--- a/mix.exs
+++ b/mix.exs
@@ -5,7 +5,7 @@ defmodule ExOvh.Mixfile do
     [
       app: :ex_ovh,
       name: "ExOvh",
-      version: "0.0.2",
+      version: "0.1.0",
       source_url: "https://github.com/stephenmoloney/ex_ovh",
       elixir: "~> 1.2",
       build_embedded: Mix.env == :prod,
@@ -25,13 +25,12 @@ defmodule ExOvh.Mixfile do
 
   defp deps() do
     [
-      {:secure_random, "~> 0.2"},
-      {:floki, "~> 0.7.1"},
       {:calendar, "~> 0.13.2"},
       {:og, "~> 0.1"},
       {:morph, "~> 0.1.0"},
       {:poison, "~> 1.5 or ~> 2.0"},
       {:httpoison, "~> 0.8.0"},
+      {:floki, "~> 0.7.1", optional: :true},
 
       {:markdown, github: "devinus/markdown", only: :dev},
       {:ex_doc,  "~> 0.11", only: :dev}