Skip to content

Commit

Permalink
Bump to 3.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ostinelli committed Apr 19, 2022
1 parent 06279bd commit 4b5fbc1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Add it to your deps:

```elixir
defp deps do
[{:syn, "~> 3.2"}]
[{:syn, "~> 3.3"}]
end
```

Expand All @@ -78,14 +78,14 @@ If you're using [rebar3](https://github.com/erlang/rebar3), add `syn` as a depen

```erlang
{deps, [
{syn, {git, "git://github.com/ostinelli/syn.git", {tag, "3.2.2"}}}
{syn, {git, "git://github.com/ostinelli/syn.git", {tag, "3.3.0"}}}
]}.
```
Or, if you're using [Hex.pm](https://hex.pm/) as package manager (with the [rebar3_hex](https://github.com/hexpm/rebar3_hex) plugin):

```erlang
{deps, [
{syn, "3.2.2"}
{syn, "3.3.0"}
]}.
```

Expand Down
2 changes: 1 addition & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

rebar3 compile
rebar3 as docs edoc
version=3.2.2
version=3.3.0
ex_doc "syn" $version "_build/default/lib/syn/ebin" \
--source-ref ${version} \
--config docs.config $@
2 changes: 1 addition & 1 deletion src/syn.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application, syn,
[
{description, "A scalable global Process Registry and Process Group manager."},
{vsn, "3.2.2"},
{vsn, "3.3.0"},
{registered, [
syn_backbone,
syn_pg,
Expand Down
2 changes: 1 addition & 1 deletion src/syn.erl
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ members(Scope, GroupName) ->
%% 1> syn:join(devices, "area-1", self(), meta).
%% ok
%% 2> syn:member(devices, "area-1", self()).
%% [{<0.69.0>, meta}]
%% {<0.69.0>, meta}
%% '''
-spec member(Scope :: atom(), GroupName :: term(), Pid :: pid()) -> {Pid :: pid(), Meta :: term()} | undefined.
member(Scope, GroupName, Pid) ->
Expand Down

0 comments on commit 4b5fbc1

Please sign in to comment.