diff options
author | Tristan Sloughter <[email protected]> | 2015-06-21 15:01:49 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2015-06-21 15:45:07 -0500 |
commit | d73464f478725f7e4147f6b352b7af47b1017c1f (patch) | |
tree | c924a1cee30f67196d58b5709396efe3570024aa | |
parent | 9ad84ac8f93756610fc99fe6a8eb3412218478aa (diff) | |
download | relx-d73464f478725f7e4147f6b352b7af47b1017c1f.tar.gz relx-d73464f478725f7e4147f6b352b7af47b1017c1f.tar.bz2 relx-d73464f478725f7e4147f6b352b7af47b1017c1f.zip |
update travis and version bump 2.1.0
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | src/relx.app.src | 41 |
2 files changed, 12 insertions, 31 deletions
diff --git a/.travis.yml b/.travis.yml index 84eddbc..0dfe502 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ otp_release: - 17.0 - R16B03-1 - R15B03 -script: "./rebar3 ct" +script: "./rebar3 update && ./rebar3 ct" branches: only: - master diff --git a/src/relx.app.src b/src/relx.app.src index d54a7bf..146f138 100644 --- a/src/relx.app.src +++ b/src/relx.app.src @@ -1,30 +1,11 @@ -%% -*- erlang-indent-level: 4; indent-tabs-mode: nil; fill-column: 80 -*- -%% -%% @author Eric Merritt <[email protected]> -%% @copyright Erlware, Inc. -%% -%% This file is provided to you under the Apache License, -%% Version 2.0 (the "License"); you may not use this file -%% except in compliance with the License. You may obtain -%% a copy of the License at -%% -%% http://www.apache.org/licenses/LICENSE-2.0 -%% -%% Unless required by applicable law or agreed to in writing, -%% software distributed under the License is distributed on an -%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -%% KIND, either express or implied. See the License for the -%% specific language governing permissions and limitations -%% under the License. -%% - -{application, relx, - [{description, "Release assembler for Erlang/OTP Releases"}, - {vsn, "semver"}, - {modules, []}, - {registered, []}, - {applications, [kernel, stdlib, getopt, erlware_commons, bbmustache, providers]}, - - {contributors, ["Eric Merritt", "Tristan Sloughter", "Jordan Wilberding"]}, - {licenses, ["Apache"]}, - {links, [{"Github", "https://github.com/erlware/relx"}]}]}. +{application,relx, + [{description,"Release assembler for Erlang/OTP Releases"}, + {vsn,"2.1.0"}, + {modules,[]}, + {registered,[]}, + {applications,[kernel,stdlib,getopt,erlware_commons,bbmustache, + providers]}, + {contributors,["Eric Merritt","Tristan Sloughter", + "Jordan Wilberding"]}, + {licenses,["Apache"]}, + {links,[{"Github","https://github.com/erlware/relx"}]}]}. |