Skip to content

Commit

Permalink
Increase version to 0.1.4 and upgrade cre 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 e122e6e commit 51ad659
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ Although the Cuneiform worker application can be imported also directly from Git

#### rebar3

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

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

#### mix

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

```
### Compiling
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{cover_enabled, true}.

{deps, [
{cre, "0.1.5"},
{cre, "0.1.6"},
{effi, "0.1.5"},
{getopt, "1.0.1"},
{lib_conf, "0.1.4"}
Expand Down
2 changes: 1 addition & 1 deletion src/cf_worker.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, cf_worker,
[{description, "A Cuneiform worker implementation."},
{vsn, "0.1.3"},
{vsn, "0.1.4"},
{mod, {cf_worker, []}},
{registered, []},
{applications,
Expand Down
4 changes: 2 additions & 2 deletions src/cf_worker.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <joergen.brandt@onlinehome.de>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand All @@ -45,7 +45,7 @@
%% Definitions
%%====================================================================

-define( VSN, "0.1.3" ).
-define( VSN, "0.1.4" ).

%%====================================================================
%% API functions
Expand Down
2 changes: 1 addition & 1 deletion src/cf_worker_process.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <joergen.brandt@onlinehome.de>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down
2 changes: 1 addition & 1 deletion src/cf_worker_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <joergen.brandt@onlinehome.de>
%% @version 0.1.3
%% @version 0.1.4
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
Expand Down

0 comments on commit 51ad659

Please sign in to comment.