Skip to content

Commit

Permalink
Increase version tag to 0.1.4 and make application output version on …
Browse files Browse the repository at this point in the history
…start
  • Loading branch information
joergen7 committed Mar 21, 2018
1 parent 006e31a commit 13ab514
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ Although the CRE library can be imported also directly from GitHub, we recommend

#### rebar3

To integrate the CRE into a rebar3 managed project change the `deps` entry in your application's `rebar.config` file to include the tuple `{cre, "0.1.3"}`.
To integrate the CRE into a rebar3 managed project change the `deps` entry in your application's `rebar.config` file to include the tuple `{cre, "0.1.4"}`.

```erlang
{deps, [{cre, "0.1.3"}]}.
{deps, [{cre, "0.1.4"}]}.
```


#### mix

```elixir
{:cre, "~> 0.1.3"}
{:cre, "~> 0.1.4"}
```

### Starting the CRE
Expand Down
2 changes: 1 addition & 1 deletion priv/default_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion priv/default_worker.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cre.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, cre,
[{description, "A common runtime environment (CRE) for distributed workflow languages."},
{vsn, "0.1.3"},
{vsn, "0.1.4"},
{mod, {cre, []}},
{registered, [cre]},
{applications, [
Expand Down
6 changes: 5 additions & 1 deletion src/cre.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand All @@ -40,6 +40,9 @@
-export( [start/2, stop/1] ).
-export( [main/1] ).


-define( ?VSN, "0.1.4" ).

%%====================================================================
%% API functions
%%====================================================================
Expand Down Expand Up @@ -68,6 +71,7 @@ start( _Type, _Args ) ->

error_logger:info_report( [{info, "starting common runtime environment"},
{application, cre},
{vsn, ?VSN},
{node, node()}] ),

cre_sup:start_link().
Expand Down
2 changes: 1 addition & 1 deletion src/cre_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cre_master.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%% @doc A module implementing the behavior of the common runtime environment
Expand Down
2 changes: 1 addition & 1 deletion src/cre_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cre_worker.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion test/cre_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion test/logic_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion test/logic_worker.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down

0 comments on commit 13ab514

Please sign in to comment.