version 0.1.1. docs 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
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