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:21 UTC

[couchdb] branch erlang-22-support created (now 0df16e6)

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

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


      at 0df16e6  Add erlang 22 support

This branch includes the following new commits:

     new 0df16e6  Add erlang 22 support

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/01: Add erlang 22 support

Posted by va...@apache.org.
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},