Skip to content

Commit

Permalink
chore: prepare for RC3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hpopp committed Sep 10, 2024
1 parent fec0405 commit 24b6882
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
> HTTP2-compliant wrapper for sending iOS and Android push notifications.
[![CI](https://github.com/codedge-llc/pigeon/actions/workflows/ci.yml/badge.svg)](https://github.com/codedge-llc/pigeon/actions/workflows/ci.yml)
[![Hex.pm](http://img.shields.io/hexpm/v/pigeon.svg)](https://hex.pm/packages/pigeon)
[![Hex.pm](http://img.shields.io/hexpm/dt/pigeon.svg)](https://hex.pm/packages/pigeon)
[![Version](https://img.shields.io/hexpm/v/pigeon.svg)](https://hex.pm/packages/pigeon)
[![Total Downloads](https://img.shields.io/hexpm/dt/pigeon.svg)](https://hex.pm/packages/pigeon)
[![License](https://img.shields.io/hexpm/l/pigeon.svg)](https://github.com/codedge-llc/pigeon/blob/master/LICENSE)
[![Last Updated](https://img.shields.io/github/last-commit/codedge-llc/pigeon.svg)](https://github.com/codedge-llc/pigeon/commits/master)
[![Documentation](https://img.shields.io/badge/documentation-gray)](https://hexdocs.pm/pigeon/)

_Pigeon v2.0 is in release candidate status. See [the latest stable 1.6 on Hex](https://hex.pm/packages/pigeon)
or [the 1.6 branch on GitHub](https://github.com/codedge-llc/pigeon/tree/v1.6) for installation._
Expand All @@ -16,7 +19,7 @@ Add `:pigeon` and as a `mix.exs` dependency:
```elixir
def deps do
[
{:pigeon, "~> 2.0.0-rc.2"}
{:pigeon, "~> 2.0.0-rc.3"}
]
end
```
Expand Down
16 changes: 12 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Pigeon.Mixfile do
use Mix.Project

@source_url "https://github.com/codedge-llc/pigeon"
@version "2.0.0-rc.2"
@version "2.0.0-rc.3"

def project do
[
Expand Down Expand Up @@ -58,6 +58,10 @@ defmodule Pigeon.Mixfile do

defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"]
],
groups_for_modules: [
"ADM - Amazon Android": [Pigeon.ADM, Pigeon.ADM.Notification],
"APNS - Apple iOS": [Pigeon.APNS, Pigeon.APNS.Notification],
Expand All @@ -67,7 +71,10 @@ defmodule Pigeon.Mixfile do
PigeonTest.GothHttpClient.Stub
]
],
main: "Pigeon"
formatters: ["html"],
main: "Pigeon",
source_ref: "v#{@version}",
source_url: @source_url
]
end

Expand All @@ -80,11 +87,12 @@ defmodule Pigeon.Mixfile do

defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG*"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/pigeon/changelog.html",
"GitHub" => @source_url
"GitHub" => @source_url,
"Sponsor" => "https://github.com/sponsors/codedge-llc"
},
maintainers: ["Henry Popp", "Tyler Hurst"]
]
Expand Down

0 comments on commit 24b6882

Please sign in to comment.