From a3e44455f12e63650a0066867883613569c7a336 Mon Sep 17 00:00:00 2001 From: Paulo Valente <16843419+polvalente@users.noreply.github.com> Date: Wed, 27 Jul 2022 02:41:07 -0300 Subject: [PATCH] chore: bump to 0.5.0 (#253) * chore: bump to 0.5.0 * fix: deps declaration --- README.md | 5 +++-- mix.exs | 6 ++++-- mix.lock | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a8a5d997..9ec1122d 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ An Elixir implementation of [gRPC](http://www.grpc.io/). **NOTICE: gun** -The Gun library doesn't have a full 2.0 release yet, so we depend on `2.0.0-rc.2` for now. +The Gun library doesn't have a full 2.0 release yet, so we depend on `:grcp_gun 2.0.1` for now. +This is the same as `:gun 2.0.0-rc.2`, but Hex doesn't let us depend on RC versions for releases. ## Installation @@ -22,7 +23,7 @@ The package can be installed as: ```elixir def deps do [ - {:grpc, github: "elixir-grpc/grpc"}, + {:grpc, "~> 0.5.0"}, # We don't force protobuf as a dependency for more # flexibility on which protobuf library is used, # but you probably want to use it as well diff --git a/mix.exs b/mix.exs index 990c81f9..ade000c2 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule GRPC.Mixfile do use Mix.Project - @version "0.5.0-beta.1" + @version "0.5.0" def project do [ @@ -40,7 +40,9 @@ defmodule GRPC.Mixfile do defp deps do [ {:cowboy, "~> 2.9"}, - {:gun, "~> 2.0.0-rc.2"}, + # This is the same as :gun 2.0.0-rc.2, + # but we can't depend on an RC for releases + {:gun, "~> 2.0.1", hex: :grpc_gun}, {:cowlib, "~> 2.11"}, {:protobuf, "~> 0.10", only: [:dev, :test]}, {:ex_doc, "~> 0.28", only: :dev}, diff --git a/mix.lock b/mix.lock index 4feda205..71da64c0 100644 --- a/mix.lock +++ b/mix.lock @@ -6,7 +6,7 @@ "earmark_parser": {:hex, :earmark_parser, "1.4.26", "f4291134583f373c7d8755566122908eb9662df4c4b63caa66a0eabe06569b0a", [:mix], [], "hexpm", "48d460899f8a0c52c5470676611c01f64f3337bad0b26ddab43648428d94aabc"}, "erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"}, "ex_doc": {:hex, :ex_doc, "0.28.4", "001a0ea6beac2f810f1abc3dbf4b123e9593eaa5f00dd13ded024eae7c523298", [:mix], [{:earmark_parser, "~> 1.4.19", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "bf85d003dd34911d89c8ddb8bda1a958af3471a274a4c2150a9c01c78ac3f8ed"}, - "gun": {:hex, :gun, "2.0.0-rc.2", "7c489a32dedccb77b6e82d1f3c5a7dadfbfa004ec14e322cdb5e579c438632d2", [:make, :rebar3], [{:cowlib, "2.11.0", [hex: :cowlib, repo: "hexpm", optional: false]}], "hexpm", "6b9d1eae146410d727140dbf8b404b9631302ecc2066d1d12f22097ad7d254fc"}, + "gun": {:hex, :grpc_gun, "2.0.1", "221b792df3a93e8fead96f697cbaf920120deacced85c6cd3329d2e67f0871f8", [:rebar3], [{:cowlib, "~> 2.11", [hex: :cowlib, repo: "hexpm", optional: false]}], "hexpm", "795a65eb9d0ba16697e6b0e1886009ce024799e43bb42753f0c59b029f592831"}, "inch_ex": {:hex, :inch_ex, "2.0.0", "24268a9284a1751f2ceda569cd978e1fa394c977c45c331bb52a405de544f4de", [:mix], [{:bunt, "~> 0.2", [hex: :bunt, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "96d0ec5ecac8cf63142d02f16b7ab7152cf0f0f1a185a80161b758383c9399a8"}, "jason": {:hex, :jason, "1.3.0", "fa6b82a934feb176263ad2df0dbd91bf633d4a46ebfdffea0c8ae82953714946", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "53fc1f51255390e0ec7e50f9cb41e751c260d065dcba2bf0d08dc51a4002c2ac"}, "makeup": {:hex, :makeup, "1.1.0", "6b67c8bc2882a6b6a445859952a602afc1a41c2e08379ca057c0f525366fc3ca", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "0a45ed501f4a8897f580eabf99a2e5234ea3e75a4373c8a52824f6e873be57a6"},