From 499da875eb7306bcdbd28ee9003d8febe97c0bf7 Mon Sep 17 00:00:00 2001 From: Luca Succi Date: Wed, 25 Sep 2024 17:44:32 +0200 Subject: [PATCH] Version 1.0.0 --- CHANGELOG.md | 2 +- rebar.config | 2 +- src/grisp_connect.app.src | 15 ++++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca58faf..d2f5614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to ## [Unreleased] -## [1.0.0] - 2024-09-24 +## [1.0.0] - 2024-09-26 ### What's Changed diff --git a/rebar.config b/rebar.config index a15a477..c9944bd 100644 --- a/rebar.config +++ b/rebar.config @@ -1,6 +1,6 @@ {erl_opts, [debug_info]}. {deps, [ - {grisp, "~> 2.5"}, + {grisp, "~> 2.6"}, {gun, "2.1.0"}, jsx, {grisp_cryptoauth, "~> 2.4"}, diff --git a/src/grisp_connect.app.src b/src/grisp_connect.app.src index dc2e513..110e439 100644 --- a/src/grisp_connect.app.src +++ b/src/grisp_connect.app.src @@ -44,5 +44,18 @@ ]} ]}, {modules, []}, - {links, []} + {links, [ + {"Homepage", "https://www.grisp.io"}, + {"Changelog", "https://github.com/grisp/grisp_connect/blob/main/CHANGELOG.md"}, + {"GitHub", "https://github.com/grisp/grisp_connect"} + ]}, + {files, [ + "LICENSE", + "README.md", + "rebar.*", + "include", + "src", + "grisp" + ]}, + {licenses, ["Apache-2.0"]} ]}.