Browse Source

Bump to 2.1.1.

Roberto Ostinelli 5 years ago
parent
commit
5c7aeaf979
2 changed files with 3 additions and 13 deletions
  1. 2 12
      README.md
  2. 1 1
      src/syn.app.src

+ 2 - 12
README.md

@@ -48,29 +48,19 @@ defp deps do
 end
 ```
 
-Ensure that `syn` is started with your application, for example by adding it to the list of your application's `extra_applications`:
-
-```elixir
-def application do
-  [
-    extra_applications: [:logger, :syn]
-  ]
-end
-```
-
 ### For Erlang
 If you're using [rebar3](https://github.com/erlang/rebar3), add `syn` as a dependency in your project's `rebar.config` file:
 
 ```erlang
 {deps, [
-  {syn, {git, "git://github.com/ostinelli/syn.git", {tag, "2.1.0"}}}
+  {syn, {git, "git://github.com/ostinelli/syn.git", {tag, "2.1.1"}}}
 ]}.
 ```
 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, "2.1.0"}
+  {syn, "2.1.1"}
 ]}.
 ```
 

+ 1 - 1
src/syn.app.src

@@ -1,7 +1,7 @@
 {application, syn,
     [
         {description, "A global Process Registry and Process Group manager."},
-        {vsn, "2.1.0"},
+        {vsn, "2.1.1"},
         {registered, [
             syn_backbone,
             syn_groups,