You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2019/07/09 20:47:22 UTC

[couchdb] 01/01: Add erlang 22 support

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch erlang-22-support
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 0df16e6e0be59a3b3da85515f473c925560ae26e
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Tue Jul 9 16:45:52 2019 -0400

    Add erlang 22 support
---
 .travis.yml         | 1 +
 rebar.config.script | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index f75dd04..9ab0fd2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,7 @@ os: linux
 dist: trusty
 
 otp_release:
+   - 22.0
    - 21.2.3
    - 20.3.8.5
    - 19.3
diff --git a/rebar.config.script b/rebar.config.script
index 33ceb72..1b9d4f7 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -98,7 +98,7 @@ DepDescs = [
 {b64url,           "b64url",           {tag, "1.0.1"}},
 {ets_lru,          "ets-lru",          {tag, "1.0.0"}},
 {khash,            "khash",            {tag, "1.0.1"}},
-{snappy,           "snappy",           {tag, "CouchDB-1.0.2"}},
+{snappy,           "snappy",           {tag, "CouchDB-1.0.4"}},
 {ioq,              "ioq",              {tag, "2.1.2"}},
 {hqueue,           "hqueue",           {tag, "1.0.1"}},
 {smoosh,           "smoosh",           {tag, "1.0.1"}},
@@ -148,7 +148,7 @@ ErlOpts = case os:getenv("ERL_OPTS") of
 end,
 
 AddConfig = [
-    {require_otp_vsn, "19|20|21"},
+    {require_otp_vsn, "19|20|21|22"},
     {deps_dir, "src"},
     {deps, lists:map(MakeDep, DepDescs ++ OptionalDeps)},
     {sub_dirs, SubDirs},