Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ziopio committed Oct 12, 2024
1 parent 2136ae2 commit 4758b11
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2024-10-12

### What's Changed

#### Added

- API to manage and deploy grisp device updates through GRiSP.io
- upload and delete update packages
- start deployments and validate updates

**Full Changelog**: https://github.com/grisp/rebar3_grisp_io/commits/0.1.0

[Unreleased]: https://github.com/grisp/rebar3_grisp_io/compare/0.1.0...HEAD
[0.1.0]: https://github.com/grisp/rebar3_grisp_io/compare/023e51e181ee80491299d3c5fb9f604f4729d35a...0.1.0
16 changes: 15 additions & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
]}.

{plugins, [
{rebar3_grisp, {git, "git@github.com:grisp/rebar3_grisp", {branch, "master"}}}
{rebar3_grisp, "~> 2.8"},
rebar3_ex_doc
]}.

{profiles, [
Expand All @@ -27,3 +28,16 @@
]}
]}
]}.

{hex, [{doc, ex_doc}]}.

{ex_doc, [
{extras, [
{"CHANGELOG.md", #{title => "Changelog"}},
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/grisp/rebar3_grisp_io"},
{source_url, "https://github.com/grisp/rebar3_grisp_io"}
]}.
14 changes: 12 additions & 2 deletions src/rebar3_grisp_io.app.src
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{application, rebar3_grisp_io, [
{description, "A rebar plugin"},
{description, "Rebar plugin to integrate with grisp.io"},
{vsn, "0.1.0"},
{registered, []},
{applications, [
Expand All @@ -10,5 +10,15 @@
{env, []},
{modules, []},
{licenses, ["Apache-2.0"]},
{links, []}
{links, [
{"GitHub",
"https://github.com/grisp/rebar3_grisp_io"
},
{"Changelog",
"https://github.com/grisp/rebar3_grisp_io/blob/main/CHANGELOG.md"
},
{"Homepage",
"https://grisp.io"
}
]}
]}.

0 comments on commit 4758b11

Please sign in to comment.