Skip to content

Commit b831d16

Browse files
authored
Merge pull request #6 from esl/upgrading
Prepare to release new hex packages
2 parents 4ab1ff2 + 9c350ef commit b831d16

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

Diff for: LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
Copyright 2018-2024 Erlang Solutions.
12
Copyright 2016-2018 ShopGun ApS.
23
Copyright 2021 Jesper Louis Andersen.
34

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/shopgun/graphql-erlang.svg?branch=develop)](https://travis-ci.org/shopgun/graphql-erlang)
1+
[![Hex](http://img.shields.io/hexpm/v/graphql_erl.svg)](https://hex.pm/packages/graphql_erl)
22

33
# A GraphQL Server library - in Erlang
44

Diff for: rebar.config

+14-3
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,28 @@
2222

2323
{profiles, [
2424
{test, [
25-
{deps, [{jsx, "2.9.0"}]},
25+
{deps, [{jsx, "3.1.0"}]},
2626
{erl_opts, [nowarn_export_all]}
2727
]}
2828
]}.
2929

3030
{plugins, [
31-
rebar3_hex
31+
rebar3_hex,
32+
rebar3_ex_doc
3233
]}.
3334

3435
{project_plugins, [
35-
{geas_rebar3, {git, "https://github.com/crownedgrouse/geas_rebar3.git", {branch, "master"}}}
36+
{geas_rebar3, "1.4.16"}
3637
]}.
3738

3839
{dialyzer, [{warnings, [unknown]}]}.
40+
41+
{ex_doc, [
42+
{source_url, <<"https://github.com/esl/graphql-erlang">>},
43+
{extras, [{'README.md', #{title => <<"Overview">>}},
44+
{'LICENSE', #{title => <<"License">>}}
45+
]},
46+
{main, <<"readme">>}
47+
]}.
48+
49+
{hex, [{doc, ex_doc}]}.

Diff for: src/graphql.app.src

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{application,graphql,
22
[{description,"Application for handling GraphQL queries"},
3-
{vsn,"0.16.1"},
3+
{vsn,git},
44
{registered,[]},
55
{applications,[kernel,stdlib]},
66
{mod,{graphql_app,[]}},
77
{env,[]},
88
{modules,[]},
99
{registered,[graphql_schema]},
1010
{pkg_name,"graphql_erl"},
11-
{maintainers,["Jesper Louis Andersen","Martin Gausby"]},
11+
{maintainers,["Erlang Solutions", "Jesper Louis Andersen", "Martin Gausby"]},
1212
{licenses,["Apache 2.0"]},
13-
{links,[{"Github","https://github.com/jlouis/graphql-erlang"},
13+
{links,[{"Github","https://github.com/esl/graphql-erlang"},
1414
{"Tutorial",
1515
"https://jlouis.github.io/graphql-erlang-tutorial/"}]}]}.

0 commit comments

Comments
 (0)