Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nifoc committed Apr 1, 2015
1 parent b5b10ef commit 37235c8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.3

[Documentation](http://noesis.nifoc.pw/0.3/)

* Added `noesis_geometry` module with some (more or less) geometry related functions
* Added `noesis_math` module
* Added `noesis_polyline` module, which implements encoding and decoding [polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT = noesis
PROJECT_VERSION = 0.2.1
PROJECT_VERSION = 0.3

otp_release = $(shell erl -noshell -eval 'io:format("~s", [erlang:system_info(otp_release)]), init:stop()')
otp_17plus = $(shell echo $(otp_release) | grep -q -E "^[[:digit:]]+$$" ; echo $$?)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A collection of useful utility functions.

## Resources

* [Generated EDoc](http://noesis.nifoc.pw/0.2.1/) ([All Versions](http://noesis.nifoc.pw))
* [Generated EDoc](http://noesis.nifoc.pw/0.3/) ([All Versions](http://noesis.nifoc.pw))

## License

Expand Down
2 changes: 1 addition & 1 deletion src/noesis.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, noesis, [
{description, "A collection of useful utility functions."},
{vsn, "0.2.1"},
{vsn, "0.3"},
{modules, []},
{registered, []},
{applications, [
Expand Down
2 changes: 2 additions & 0 deletions src/noesis_task.erl
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,12 @@ await({Ref, MRef, Pid}, Timeout) ->
{error, timeout}
end.

% @doc Awaits multiple {@link task()} replies. The `Timeout' per task is set to `5000' ms.
-spec await_multi(noesis_proplists:proplist(A, task())) -> noesis_proplists:proplist(A, term()).
await_multi(Tasks) ->
await_multi(Tasks, 5000).

% @doc Awaits multiple {@link task()} replies. The `Timeout' is applied on a per task basis.
-spec await_multi(noesis_proplists:proplist(A, task()), pos_integer()) -> noesis_proplists:proplist(A, term()).
await_multi(Tasks, Timeout) ->
await_multi_acc(Tasks, Timeout, []).
Expand Down
2 changes: 1 addition & 1 deletion src/noesis_xml.erl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

% API

% @doc Taskes a list of {@link elements()} and returns a XML-binary.
% @doc Takes a list of {@link elements()} and returns a XML-binary.
-spec from_list(elements()) -> binary().
from_list(Elements) ->
from_list_acc(Elements, []).
Expand Down

0 comments on commit 37235c8

Please sign in to comment.