Skip to content

Commit

Permalink
Version Bump to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Feb 22, 2017
1 parent c777b9e commit 93aefe5
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ edoc
priv/*.so
*.crashdump
rebar.lock
*_plt
*_plt
doc
docs
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [v0.4.2](https://github.com/cabol/shards/tree/v0.4.2) (2017-02-22)
[Full Changelog](https://github.com/cabol/shards/compare/v0.4.1...v0.4.2)

**Closed issues:**

- Implement `ets:rename/2` [\#32](https://github.com/cabol/shards/issues/32)
- Fulfil ETS API for `shards\_local` [\#1](https://github.com/cabol/shards/issues/1)

## [v0.4.1](https://github.com/cabol/shards/tree/v0.4.1) (2017-02-13)
[Full Changelog](https://github.com/cabol/shards/compare/v0.4.0...v0.4.1)

Expand All @@ -23,7 +31,6 @@
**Closed issues:**

- Add performance and scalability tests [\#2](https://github.com/cabol/shards/issues/2)
- Fulfil ETS API for `shards\_local` [\#1](https://github.com/cabol/shards/issues/1)

## [v0.3.1](https://github.com/cabol/shards/tree/v0.3.1) (2016-09-08)
[Full Changelog](https://github.com/cabol/shards/compare/v0.3.0...v0.3.1)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ REBAR = $(shell which rebar3)

EPMD_PROC_NUM = $(shell ps -ef | grep epmd | grep -v "grep")

.PHONY: all check_rebar compile clean distclean dialyzer tests shell edoc
.PHONY: all check_rebar compile clean distclean dialyzer tests shell doc

all: check_rebar compile

Expand Down Expand Up @@ -56,5 +56,5 @@ dist_test: check_rebar check_epmd
shell: check_rebar
$(REBAR) shell

edoc: check_rebar
doc: check_rebar
$(REBAR) edoc
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ In your `rebar.config`:

```erlang
{deps, [
{shards, "0.4.1"}
{shards, "0.4.2"}
]}.
```

Expand Down Expand Up @@ -427,7 +427,7 @@ You can find tests results in `_build/test/logs`, and coverage in `_build/test/c
## Building Edoc
$ make edoc
$ make doc
> **Note:** Once you run previous command, a new folder `doc` is created, and you'll have a pretty nice HTML documentation.

Expand Down
2 changes: 1 addition & 1 deletion src/shards.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, shards, [
{description, "ETS with Sharding support."},
{vsn, "0.4.1"},
{vsn, "0.4.2"},
{registered, []},
{mod, {shards, []}},
{applications, [kernel, stdlib]},
Expand Down
2 changes: 1 addition & 1 deletion src/shards_dist.erl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
%% Macro to get the default module to use: `shards_local'.
-define(SHARDS, shards_local).

%% @type option() :: {nodes, [node()]} | shards_local:option().
%% @type option() = {nodes, [node()]} | shards_local:option().
-type option() :: {nodes, [node()]} | shards_local:option().

% Exported Types
Expand Down
4 changes: 2 additions & 2 deletions test/dist_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ start_slaves([Node | T], Acc) ->
{startup_functions, [{shards, start, []}]},
{erl_flags, ErlFlags}
]),
ct:print("\e[36m ---> Node ~p \e[32m[OK] \e[0m", [HostNode]),
ct:pal("==> Node ~p [UP]", [HostNode]),
pong = net_adm:ping(HostNode),
start_slaves(T, [HostNode | Acc]).

Expand All @@ -240,7 +240,7 @@ stop_slaves([], Acc) ->
lists:usort(Acc);
stop_slaves([Node | T], Acc) ->
{ok, Name} = ct_slave:stop(Node),
ct:print("\e[36m ---> Node ~p \e[31m[STOPPED] \e[0m", [Name]),
ct:pal("==> Node ~p [STOPPED]", [Name]),
pang = net_adm:ping(Node),
stop_slaves(T, [Node | Acc]).

Expand Down

0 comments on commit 93aefe5

Please sign in to comment.