Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Commit

Permalink
chore: Version 18.2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
pouriya committed Feb 20, 2018
1 parent c8464af commit ac92a49
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,24 +263,24 @@ Anything other than {`ok`, Opts}` and `{new_error, _, Opts}` causes **Director**
##### Rebar3
Put this in deps in rebar.config:
```erlang
{director, "18.1.1"}
{director, "18.2.20"}
```

##### Rebar
Put this in deps in rebar.config:
```erlang
{director, ".*", {git, "https://github.com/Pouriya-Jahanbakhsh/director.git", {tag, "18.1.1"}}}
{director, ".*", {git, "https://github.com/Pouriya-Jahanbakhsh/director.git", {tag, "18.2.20"}}}
```

##### Mix
Put this in deps in mix.exs:
```elixir
{:director, "~> 18.1.1"}
{:director, "~> 18.2.20"}
```

##### erlang.mk
```make
dep_director = hex 18.1.1
dep_director = hex 18.2.20
```

#### API documentation
Expand Down
4 changes: 2 additions & 2 deletions src/director.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application
,director
,[{description, "It is a production-ready supervisor and manager for Erlang/Elixir processes with focus on speed, performance and flexibility."}
,{vsn, "18.1.1"}
,[{description, "It is a production-ready supervisor and manager for Erlang/Elixir processes that focuses on speed, performance and flexibility."}
,{vsn, "18.2.20"}
,{applications, [kernel, stdlib]}
,{maintainers, ["[email protected]"]}
,{licenses, ["BSD 3-Clause"]}
Expand Down
6 changes: 3 additions & 3 deletions src/director.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @doc
%% Director is a production-ready supervisor and manager for Erlang/Elixir processes with
%% focus on speed and flexibility.
%% Director is a production-ready supervisor and manager for Erlang/Elixir processes that
%% focuses on speed and flexibility.
%% @end
%% -------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/director_child.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @hidden
%% -------------------------------------------------------------------------------------------------
-module(director_child).
Expand Down
2 changes: 1 addition & 1 deletion src/director_table.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @hidden
%% @doc
%% API functions for keeping, updating and fetching
Expand Down
2 changes: 1 addition & 1 deletion src/director_table_ets.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @doc
%% API functions for interacting with ETS table as backend children table.
%% @end
Expand Down
2 changes: 1 addition & 1 deletion src/director_table_list.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @hidden
%% -------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/director_table_mnesia.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @doc
%% API functions for interacting with Mnesia table as backend children table.
%% @end
Expand Down
2 changes: 1 addition & 1 deletion src/director_utils.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% @hidden
%% -------------------------------------------------------------------------------------------------
-module(director_utils).
Expand Down
2 changes: 1 addition & 1 deletion test/director_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% POSSIBILITY OF SUCH DAMAGE.
%%% ------------------------------------------------------------------------------------------------
%% @author Pouriya Jahanbakhsh <[email protected]>
%% @version 18.1.1
%% @version 18.2.20
%% -------------------------------------------------------------------------------------------------
-module(director_SUITE).
-author("[email protected]").
Expand Down

0 comments on commit ac92a49

Please sign in to comment.