Skip to content

Commit

Permalink
docs: add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
c4710n committed Oct 13, 2024
1 parent 8f04013 commit 05b5565
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## unreleased

- add support for [Apple Maps Server API](https://developer.apple.com/documentation/applemapsserverapi/)
8 changes: 6 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ defmodule Apple.MixProject do
@version "0.4.1"
@description "Utilities for building Apple SDKs."
@source_url "https://github.com/cozy-elixir/apple"
@changelog_url "https://github.com/cozy-elixir/apple/blob/v#{@version}/CHANGELOG.md"

def project do
[
Expand Down Expand Up @@ -43,7 +44,7 @@ defmodule Apple.MixProject do

defp docs do
[
extras: ["README.md"],
extras: ["README.md", "CHANGELOG.md"],
source_url: @source_url,
source_ref: "v#{@version}",
groups_for_modules: groups_for_modules()
Expand All @@ -70,7 +71,10 @@ defmodule Apple.MixProject do
defp package do
[
licenses: ["Apache-2.0"],
links: %{GitHub: @source_url}
links: %{
GitHub: @source_url,
Changelog: @changelog_url
}
]
end

Expand Down

0 comments on commit 05b5565

Please sign in to comment.