Skip to content

Commit 4d92eb0

Browse files
committed
Release v0.3.0
1 parent 2244849 commit 4d92eb0

File tree

4 files changed

+35
-22
lines changed

4 files changed

+35
-22
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## 0.3.0 (2016-06-09)
4+
5+
* Bump version to match GraphQL Elixir
6+
* Update dependencies to v0.3.1 of GraphQL Elixir

LICENSE

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
1-
The MIT License (MIT)
1+
BSD License
22

3-
Copyright (c) 2016 Sean Abrahams
3+
Copyright (c) Sean Abrahams All rights reserved.
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
5+
Redistribution and use in source and binary forms, with or without modification,
6+
are permitted provided that the following conditions are met:
117

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
8+
* Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
1410

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
11+
* Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
* Neither the name GraphQL Elixir nor the names of its contributors may be used to
16+
endorse or promote products derived from this software without specific
17+
prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
23+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ It's important that you understand GraphQL first and then Relay second. Relay is
2323
1. Add graphql_relay to your list of dependencies in `mix.exs`:
2424

2525
def deps do
26-
[{:graphql_relay, "~> 0.0.17"}]
26+
[{:graphql_relay, "~> 0.3"}]
2727
end
2828

2929
## Configuration

mix.exs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
defmodule GraphQL.Relay.Mixfile do
22
use Mix.Project
33

4-
@version "0.0.17"
5-
@description "Elixir implementation of Relay for GraphQL"
4+
@version "0.3.0"
5+
@description "Relay helpers for GraphQL Elixir"
66
@repo_url "https://github.com/graphql-elixir/graphql_relay"
77

88
def project do
@@ -40,8 +40,8 @@ defmodule GraphQL.Relay.Mixfile do
4040
end
4141

4242
defp package do
43-
[maintainers: ["Sean Abrahams"],
44-
licenses: ["MIT"],
43+
[maintainers: ["Sean Abrahams", "Josh Price"],
44+
licenses: ["BSD"],
4545
links: %{"GitHub" => @repo_url},
4646
files: ~w(lib mix.exs *.md LICENSE)]
4747
end

0 commit comments

Comments
 (0)