minor changes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
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}