Roberto Ostinelli 5 лет назад
Родитель
Сommit
68f6fbc734
3 измененных файлов с 3 добавлено и 5 удалено
  1. 0 2
      .travis.yml
  2. 2 2
      README.md
  3. 1 1
      src/syn.app.src

+ 0 - 2
.travis.yml

@@ -6,8 +6,6 @@ otp_release:
   - 20.1
   - 19.3
   - 18.3
-  - 17.5
-  - R16B03-1
 
 branches:
   only:

+ 2 - 2
README.md

@@ -64,14 +64,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, "2.0.0-rc.1"}}}
+  {syn, {git, "git://github.com/ostinelli/syn.git", {tag, "2.0.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, "2.0.0-rc.1"}
+  {syn, "2.0.0"}
 ]}.
 ```
 

+ 1 - 1
src/syn.app.src

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