Skip to content

Commit

Permalink
Increase version to 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joergen7 committed Apr 17, 2018
1 parent 70b079f commit 147fa9e
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ 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.5"}`.
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.6"}`.

```erlang
{deps, [{cre, "0.1.5"}]}.
{deps, [{cre, "0.1.6"}]}.
```

#### mix

In an Elixir context, the CRE can be integrated into the project via mix.

```elixir
{:cre, "~> 0.1.5"}
{:cre, "~> 0.1.6"}
```

### Starting the CRE Master
Expand Down
32 changes: 31 additions & 1 deletion include/cre.hrl
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
%% -*- erlang -*-
%%
%% Common runtime environment for distributed programming languages
%%
%% Copyright 2015-2018 Jörgen Brandt
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <[email protected]>
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
%%
%%
%%
%% @end
%% -------------------------------------------------------------------

%%====================================================================
%% Definitions
%%====================================================================

-define( VSN, "0.1.5" ).
-define( VSN, "0.1.6" ).

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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @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, "Common runtime environment for distributed programming languages"},
{vsn, "0.1.5"},
{vsn, "0.1.6"},
{mod, {cre, []}},
{registered, [cre]},
{applications, [
Expand Down
2 changes: 1 addition & 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.5
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cre_cache_handler.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.5
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cre_status_handler.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.5
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @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.5
%% @version 0.1.6
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down

0 comments on commit 147fa9e

Please sign in to comment.