Skip to content

Commit 93aefe5

Browse files
committed
Version Bump to 0.4.2
1 parent c777b9e commit 93aefe5

File tree

7 files changed

+19
-10
lines changed

7 files changed

+19
-10
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ edoc
3131
priv/*.so
3232
*.crashdump
3333
rebar.lock
34-
*_plt
34+
*_plt
35+
doc
36+
docs

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [v0.4.2](https://github.com/cabol/shards/tree/v0.4.2) (2017-02-22)
4+
[Full Changelog](https://github.com/cabol/shards/compare/v0.4.1...v0.4.2)
5+
6+
**Closed issues:**
7+
8+
- Implement `ets:rename/2` [\#32](https://github.com/cabol/shards/issues/32)
9+
- Fulfil ETS API for `shards\_local` [\#1](https://github.com/cabol/shards/issues/1)
10+
311
## [v0.4.1](https://github.com/cabol/shards/tree/v0.4.1) (2017-02-13)
412
[Full Changelog](https://github.com/cabol/shards/compare/v0.4.0...v0.4.1)
513

@@ -23,7 +31,6 @@
2331
**Closed issues:**
2432

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

2835
## [v0.3.1](https://github.com/cabol/shards/tree/v0.3.1) (2016-09-08)
2936
[Full Changelog](https://github.com/cabol/shards/compare/v0.3.0...v0.3.1)

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ REBAR = $(shell which rebar3)
22

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

5-
.PHONY: all check_rebar compile clean distclean dialyzer tests shell edoc
5+
.PHONY: all check_rebar compile clean distclean dialyzer tests shell doc
66

77
all: check_rebar compile
88

@@ -56,5 +56,5 @@ dist_test: check_rebar check_epmd
5656
shell: check_rebar
5757
$(REBAR) shell
5858

59-
edoc: check_rebar
59+
doc: check_rebar
6060
$(REBAR) edoc

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In your `rebar.config`:
3434

3535
```erlang
3636
{deps, [
37-
{shards, "0.4.1"}
37+
{shards, "0.4.2"}
3838
]}.
3939
```
4040

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

src/shards.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, shards, [
22
{description, "ETS with Sharding support."},
3-
{vsn, "0.4.1"},
3+
{vsn, "0.4.2"},
44
{registered, []},
55
{mod, {shards, []}},
66
{applications, [kernel, stdlib]},

src/shards_dist.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
%% Macro to get the default module to use: `shards_local'.
4545
-define(SHARDS, shards_local).
4646

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

5050
% Exported Types

test/dist_SUITE.erl

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ start_slaves([Node | T], Acc) ->
229229
{startup_functions, [{shards, start, []}]},
230230
{erl_flags, ErlFlags}
231231
]),
232-
ct:print("\e[36m ---> Node ~p \e[32m[OK] \e[0m", [HostNode]),
232+
ct:pal("==> Node ~p [UP]", [HostNode]),
233233
pong = net_adm:ping(HostNode),
234234
start_slaves(T, [HostNode | Acc]).
235235

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

0 commit comments

Comments
 (0)