Skip to content

Commit 9410b89

Browse files
committed
Version 1.7.5.
1 parent 181ada3 commit 9410b89

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: erlang
22
otp_release:
3-
- 21.0.2
3+
- 21.1
44
- 20.3
55
- 19.3
66
before_script:
@@ -12,8 +12,15 @@ branches:
1212
only:
1313
- master
1414
notifications:
15+
email:
16+
recipients:
17+
- mjtruog@gmail.com
1518
irc:
1619
channels:
1720
- "chat.freenode.net#cloudi"
21+
template:
22+
- "%{repository_slug} (%{branch} - %{commit}) %{author}: %{commit_message}"
23+
- "View Changes %{compare_url}"
24+
- "Build #%{build_number}: %{message} (%{build_url})"
1825
on_success: change
1926
on_failure: always

doc/cloudi_http_cowboy1_handler.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1>Module cloudi_http_cowboy1_handler</h1>
1414
<h3><a name="Cowboy_CloudI_HTTP_Handler">Cowboy CloudI HTTP Handler</a></h3>.
1515
<p>Copyright © 2012-2018 Michael Truog</p>
1616

17-
<p><b>Version:</b> 1.7.4 Dec 1 2018 15:05:24
17+
<p><b>Version:</b> 1.7.5 Dec 17 2018 20:48:17
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ <h3><a name="CloudI_HTTP_Integration">CloudI HTTP Integration</a></h3>
1515
Uses the cowboy Erlang HTTP Server.
1616
<p>Copyright © 2012-2018 Michael Truog</p>
1717

18-
<p><b>Version:</b> 1.7.4 Dec 1 2018 15:05:24
18+
<p><b>Version:</b> 1.7.5 Dec 17 2018 20:48:17
1919
------------------------------------------------------------------------</p>
20-
<p><b>Behaviours:</b> <a href="/home/george/organized/work/financial_helper_apps/mc1_all-patterns/intraday_system/cloudi_org/cloudi_service_http_cowboy1/deps/cloudi_core/doc/cloudi_service.html"><tt>cloudi_service</tt></a>.</p>
20+
<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>
2222

2323
<h2><a name="description">Description</a></h2>

mix.exs

Lines changed: 2 additions & 2 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: "1.7.4",
9+
version: "1.7.5",
1010
language: :erlang,
1111
erlc_options: [
1212
:debug_info,
@@ -30,7 +30,7 @@ defmodule CloudIServiceHttpCowboy do
3030

3131
defp deps do
3232
[{:cowboy, "~> 1.1.2"},
33-
{:cloudi_core, "~> 1.7.4"}]
33+
{:cloudi_core, "~> 1.7.5"}]
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, "v1.7.5"}}},
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, "v1.7.4"}}},
13+
{tag, "v1.7.5"}}},
1414
{trie, ".*",
1515
{git, "https://github.com/okeuday/trie.git",
16-
{branch, "master"}}}]}.
16+
{tag, "v1.7.5"}}}]}.
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, "1.7.4"},
6+
{vsn, "1.7.5"},
77
{modules, [
88
cloudi_http_cowboy1_handler,
99
cloudi_service_http_cowboy1

0 commit comments

Comments
 (0)