Skip to content

Commit

Permalink
chore: bump rc.2 to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Jul 27, 2022
1 parent f917599 commit 4a3bd0d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See LICENSE for licensing information.

PROJECT = gun
PROJECT_DESCRIPTION = HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP.
PROJECT_VERSION = 2.0.0-rc.2
PROJECT = grpc_gun
PROJECT_DESCRIPTION = FORK - HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP.
PROJECT_VERSION = 2.0.1

# Options.

Expand Down
6 changes: 6 additions & 0 deletions README.asciidoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
= NOTICE about the grpc fork

This is same as upstream 2.0.0-rc.2

See https://github.com/elixir-grpc/grpc#installation for details.

= Gun

Gun is an Erlang HTTP client with support for HTTP/1.1, HTTP/2 and Websocket.
Expand Down
40 changes: 40 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
defmodule Gun.Mixfile do
use Mix.Project

def project do
[
app: :gun,
version: "2.0.1",
description: description(),
deps: deps(),
package: package()
]
end

defp description do
"""
HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP.
"""
end

defp deps do
[
{:cowlib, "~> 2.11"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end

defp package do
[
name: "grpc_gun",
maintainers: ["Loïc Hoguin"],
licenses: ["ISC"],
build_tools: ["rebar3"],
links: %{
"GitHub" => "https://github.com/elixir-grpc/gun",
"Original GitHub" => "https://github.com/ninenines/gun"
},
files: ["erlang.mk", "LICENSE", "Makefile", "README.asciidoc", "rebar.config", "src"]
]
end
end
9 changes: 9 additions & 0 deletions src/gun.app.src
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{application, 'gun', [
{description, "HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP."},
{vsn, "2.0.1"},
{modules, ['gun','gun_app','gun_content_handler','gun_data_h','gun_default_event_h','gun_event','gun_http','gun_http2','gun_raw','gun_socks','gun_sse_h','gun_sup','gun_tcp','gun_tls','gun_tls_proxy','gun_tls_proxy_cb','gun_ws','gun_ws_h']},
{registered, [gun_sup]},
{applications, [kernel,stdlib,ssl,cowlib]},
{mod, {gun_app, []}},
{env, []}
]}.

0 comments on commit 4a3bd0d

Please sign in to comment.