Skip to content

Commit 617b155

Browse files
committed
Version 2.0.3.
1 parent 0915cb9 commit 617b155

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: erlang
22
otp_release:
33
- 23.3.1
44
- 22.3.4
5-
- 21.3.8.1
65
- 20.3.8.22
76
- 19.3
87
before_script:

doc/cloudi_http_cowboy1_handler.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<h1>Module cloudi_http_cowboy1_handler</h1>
1313
<ul class="index"><li><a href="#description">Description</a></li><li><a href="#index">Function Index</a></li><li><a href="#functions">Function Details</a></li></ul>
1414
<h3><a name="Cowboy_CloudI_HTTP_Handler">Cowboy CloudI HTTP Handler</a></h3>.
15-
<p>Copyright © 2012-2020 Michael Truog</p>
15+
<p>Copyright © 2012-2021 Michael Truog</p>
1616

17-
<p><b>Version:</b> 2.0.1 May 27 2021 00:21:31
17+
<p><b>Version:</b> 2.0.3 Dec 3 2021 22:34:00
1818
------------------------------------------------------------------------</p>
1919
<p><b>Authors:</b> Michael Truog (<a href="mailto:mjtruog at protonmail dot com"><tt>mjtruog at protonmail dot com</tt></a>).</p>
2020

doc/cloudi_service_http_cowboy1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h3><a name="CloudI_HTTP_Integration">CloudI HTTP Integration</a></h3>
1515
Uses the cowboy1 Erlang HTTP Server.
1616
<p>Copyright © 2012-2021 Michael Truog</p>
1717

18-
<p><b>Version:</b> 2.0.2 May 27 2021 00:21:32
18+
<p><b>Version:</b> 2.0.2 Dec 3 2021 22:34:00
1919
------------------------------------------------------------------------</p>
2020
<p><b>Behaviours:</b> <a href="deps/cloudi_core/doc/cloudi_service.html"><tt>cloudi_service</tt></a>.</p>
2121
<p><b>Authors:</b> Michael Truog (<a href="mailto:mjtruog at protonmail dot com"><tt>mjtruog at protonmail dot com</tt></a>).</p>

mix.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule CloudIServiceHttpCowboy do
66

77
def project do
88
[app: :cloudi_service_http_cowboy1,
9-
version: "2.0.2",
9+
version: "2.0.3",
1010
language: :erlang,
1111
erlc_options: [
1212
:debug_info,
@@ -29,8 +29,8 @@ defmodule CloudIServiceHttpCowboy do
2929
end
3030

3131
defp deps do
32-
[{:cowboy, "~> 1.1.2"},
33-
{:cloudi_core, "~> 2.0.2"}]
32+
[{:cowboy, "~> 1.1.2", app: false},
33+
{:cloudi_core, "~> 2.0.3", app: false}]
3434
end
3535

3636
defp description do

rebar.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
{deps,
55
[{cloudi_core, ".*",
66
{git, "https://github.com/CloudI/cloudi_core.git",
7-
{branch, "master"}}},
7+
{tag, "v2.0.3"}}},
88
{cowboy, ".*",
99
{git, "https://github.com/ninenines/cowboy.git",
1010
{tag, "1.1.2"}}},
1111
{uuid, ".*",
1212
{git, "https://github.com/okeuday/uuid.git",
13-
{tag, "v2.0.2"}}},
13+
{tag, "v2.0.3"}}},
1414
{trie, ".*",
1515
{git, "https://github.com/okeuday/trie.git",
16-
{tag, "v2.0.2"}}}]}.
16+
{tag, "v2.0.3"}}}]}.
1717

1818
{erl_opts,
1919
[debug_info,

src/cloudi_service_http_cowboy1.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{application, cloudi_service_http_cowboy1,
55
[{description, "cowboy1 HTTP CloudI Service"},
6-
{vsn, "2.0.2"},
6+
{vsn, "2.0.3"},
77
{modules, [
88
cloudi_http_cowboy1_handler,
99
cloudi_service_http_cowboy1

0 commit comments

Comments
 (0)