changed README.md
 
@@ -10,7 +10,7 @@ by adding `geospatial` to your list of dependencies in `mix.exs`:
10
10
```elixir
11
11
def deps do
12
12
[
13
- {:geospatial, "~> 0.3.0"}
13
+ {:geospatial, "~> 0.3.1"}
14
14
]
15
15
end
16
16
```
changed hex_metadata.config
 
@@ -1,8 +1,32 @@
1
- {<<"app">>,<<"geospatial">>}.
2
- {<<"build_tools">>,[<<"mix">>]}.
1
+ {<<"links">>,[{<<"GitLab">>,<<"https://gitlab.com/mkljczk/geospatial">>}]}.
2
+ {<<"name">>,<<"geospatial">>}.
3
+ {<<"version">>,<<"0.3.1">>}.
3
4
{<<"description">>,
4
5
<<"This library extracts the Mobilizon.Service.Geospatial module from Mobilizon.">>}.
5
6
{<<"elixir">>,<<"~> 1.11">>}.
7
+ {<<"app">>,<<"geospatial">>}.
8
+ {<<"licenses">>,[<<"AGPL-3.0-only">>]}.
9
+ {<<"requirements">>,
10
+ [[{<<"name">>,<<"tesla">>},
11
+ {<<"app">>,<<"tesla">>},
12
+ {<<"optional">>,false},
13
+ {<<"requirement">>,<<"~> 1.11.0">>},
14
+ {<<"repository">>,<<"hexpm">>}],
15
+ [{<<"name">>,<<"geo">>},
16
+ {<<"app">>,<<"geo">>},
17
+ {<<"optional">>,false},
18
+ {<<"requirement">>,<<"~> 3.6.0">>},
19
+ {<<"repository">>,<<"hexpm">>}],
20
+ [{<<"name">>,<<"tz_world">>},
21
+ {<<"app">>,<<"tz_world">>},
22
+ {<<"optional">>,false},
23
+ {<<"requirement">>,<<"~> 1.3.2">>},
24
+ {<<"repository">>,<<"hexpm">>}],
25
+ [{<<"name">>,<<"hackney">>},
26
+ {<<"app">>,<<"hackney">>},
27
+ {<<"optional">>,false},
28
+ {<<"requirement">>,<<"~> 1.20.1">>},
29
+ {<<"repository">>,<<"hexpm">>}]]}.
6
30
{<<"files">>,
7
31
[<<"lib">>,<<"lib/address.ex">>,<<"lib/application.ex">>,<<"lib/http.ex">>,
8
32
<<"lib/mix">>,<<"lib/mix/tasks">>,<<"lib/mix/tasks/geospatial">>,
 
@@ -14,28 +38,4 @@
14
38
<<"lib/providers/photon.ex">>,<<"lib/providers/provider.ex">>,
15
39
<<"lib/service.ex">>,<<".formatter.exs">>,<<"mix.exs">>,<<"README.md">>,
16
40
<<"LICENSE">>]}.
17
- {<<"licenses">>,[<<"AGPL-3.0-only">>]}.
18
- {<<"links">>,[{<<"GitLab">>,<<"https://gitlab.com/mkljczk/geospatial">>}]}.
19
- {<<"name">>,<<"geospatial">>}.
20
- {<<"requirements">>,
21
- [[{<<"app">>,<<"tesla">>},
22
- {<<"name">>,<<"tesla">>},
23
- {<<"optional">>,false},
24
- {<<"repository">>,<<"hexpm">>},
25
- {<<"requirement">>,<<"~> 1.8.0">>}],
26
- [{<<"app">>,<<"geo">>},
27
- {<<"name">>,<<"geo">>},
28
- {<<"optional">>,false},
29
- {<<"repository">>,<<"hexpm">>},
30
- {<<"requirement">>,<<"~> 3.6.0">>}],
31
- [{<<"app">>,<<"tz_world">>},
32
- {<<"name">>,<<"tz_world">>},
33
- {<<"optional">>,false},
34
- {<<"repository">>,<<"hexpm">>},
35
- {<<"requirement">>,<<"~> 1.3.2">>}],
36
- [{<<"app">>,<<"hackney">>},
37
- {<<"name">>,<<"hackney">>},
38
- {<<"optional">>,false},
39
- {<<"repository">>,<<"hexpm">>},
40
- {<<"requirement">>,<<"~> 1.20.1">>}]]}.
41
- {<<"version">>,<<"0.3.0">>}.
41
+ {<<"build_tools">>,[<<"mix">>]}.
changed mix.exs
 
@@ -6,7 +6,7 @@ defmodule Geospatial.MixProject do
6
6
def project do
7
7
[
8
8
app: :geospatial,
9
- version: "0.3.0",
9
+ version: "0.3.1",
10
10
elixir: "~> 1.11",
11
11
build_embedded: Mix.env() == :prod,
12
12
start_permanent: Mix.env() == :prod,
 
@@ -25,7 +25,7 @@ defmodule Geospatial.MixProject do
25
25
26
26
defp deps do
27
27
[
28
- {:tesla, "~> 1.8.0"},
28
+ {:tesla, "~> 1.11.0"},
29
29
{:geo, "~> 3.6.0"},
30
30
{:tz_world, "~> 1.3.2"},
31
31
{:mox, "~> 1.1.0", only: :test},