Skip to content

Commit 879f253

Browse files
committed
Version 2.0.0
1 parent cb56b37 commit 879f253

File tree

6 files changed

+61
-27
lines changed

6 files changed

+61
-27
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [2.0.0] - 2024-09-05
12+
1113
### Fixed
1214

1315
- Fix file truncating causing image file in dummy system to be badly
@@ -39,5 +41,6 @@ and this project adheres to
3941

4042
First release.
4143

42-
[Unreleased]: https://github.com/grisp/grisp_updater/compare/1.0.0...HEAD
44+
[Unreleased]: https://github.com/grisp/grisp_updater/compare/2.0.0...HEAD
45+
[2.0.0]: https://github.com/grisp/grisp_updater/compare/1.0.0...2.0.0
4346
[1.0.0]: https://github.com/grisp/grisp_updater/compare/5647c909d388910503e3b9395b03cc55d879e64b...1.0.0

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175

176176
END OF TERMS AND CONDITIONS
177177

178-
Copyright 2022, Sebastien Merle <s.merle@gmail.com>.
178+
Copyright 2022, Peer Stritzinger GmbH <grisp@stritzinger.com>.
179179

180180
Licensed under the Apache License, Version 2.0 (the "License");
181181
you may not use this file except in compliance with the License.

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
grisp_updater
2-
=============
1+
# grisp_updater
32

43
GRiSP Software Update Runtime
54

6-
Build
7-
-----
5+
6+
## Build
87

98
$ rebar3 compile

rebar.config

+14-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@
33
{deps, [
44
{gun, "1.3.3"},
55
{uuid, "2.0.4", {pkg, uuid_erl}},
6-
{termseal, {git, "https://github.com/grisp/termseal.git", {branch, "main"}}}
6+
termseal
7+
]}.
8+
9+
{project_plugins, [rebar3_ex_doc]}.
10+
{hex, [{doc, ex_doc}]}.
11+
{ex_doc, [
12+
{extras, [
13+
{"CHANGELOG.md", #{title => "Changelog"}},
14+
{"README.md", #{title => "Overview"}},
15+
{"LICENSE", #{title => "License"}}
16+
]},
17+
{main, "README.md"},
18+
{homepage_url, "https://github.com/grisp/grisp_updater"},
19+
{source_url, "https://github.com/grisp/grisp_updater"}
720
]}.
821

922
{shell, [

rebar.lock

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22
[{<<"cowlib">>,{pkg,<<"cowlib">>,<<"2.7.3">>},1},
33
{<<"gun">>,{pkg,<<"gun">>,<<"1.3.3">>},0},
44
{<<"quickrand">>,{pkg,<<"quickrand">>,<<"2.0.7">>},1},
5-
{<<"termseal">>,
6-
{git,"https://github.com/grisp/termseal.git",
7-
{ref,"e1d9afc0f47a13073cfca31af4a4ffb3a86e0bc1"}},
8-
0},
5+
{<<"termseal">>,{pkg,<<"termseal">>,<<"0.1.1">>},0},
96
{<<"uuid">>,{pkg,<<"uuid_erl">>,<<"2.0.4">>},0}]}.
107
[
118
{pkg_hash,[
129
{<<"cowlib">>, <<"A7FFCD0917E6D50B4D5FB28E9E2085A0CEB3C97DEA310505F7460FF5ED764CE9">>},
1310
{<<"gun">>, <<"CF8B51BEB36C22B9C8DF1921E3F2BC4D2B1F68B49AD4FBC64E91875AA14E16B4">>},
1411
{<<"quickrand">>, <<"D2BD76676A446E6A058D678444B7FDA1387B813710D1AF6D6E29BB92186C8820">>},
12+
{<<"termseal">>, <<"C9D93D4FF638EE99F9377D3438FC7AD132D2901EBBAF10C54F8DEA1D7E24D61C">>},
1513
{<<"uuid">>, <<"77C3E3EE1E1701A2856CE945846D7CEB71931C60633A305D0B0FEAE03B2B3B5C">>}]},
1614
{pkg_hash_ext,[
1715
{<<"cowlib">>, <<"1E1A3D176D52DAEBBECBBCDFD27C27726076567905C2A9D7398C54DA9D225761">>},
1816
{<<"gun">>, <<"3106CE167F9C9723F849E4FB54EA4A4D814E3996AE243A1C828B256E749041E0">>},
1917
{<<"quickrand">>, <<"B8ACBF89A224BC217C3070CA8BEBC6EB236DBE7F9767993B274084EA044D35F0">>},
18+
{<<"termseal">>, <<"466280936214AF1894FC431642E83341B7D13580A3F3485820A2D300C5CAEB49">>},
2019
{<<"uuid">>, <<"7A4CCD1C151D9B88B4383FA802BCCF9BCB3754B7F53D7CAA164D51A14A6652E4">>}]}
2120
].

src/grisp_updater.app.src

+36-16
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,37 @@
1-
{application, grisp_updater,
2-
[{description, "GRiSP Software Update Runtime"},
3-
{vsn, "1.0.0"},
4-
{registered, []},
5-
{mod, {grisp_updater_app, []}},
6-
{applications,
7-
[kernel,
8-
stdlib,
9-
gun,
10-
uuid,
11-
termseal
12-
]},
13-
{env,[]},
14-
{modules, []},
15-
{licenses, ["Apache 2.0"]},
16-
{links, []}
1+
{application, grisp_updater, [
2+
{description, "GRiSP Software Update Runtime"},
3+
{vsn, "2.0.0"},
4+
{registered, []},
5+
{mod, {grisp_updater_app, []}},
6+
{applications, [
7+
kernel,
8+
stdlib,
9+
gun,
10+
uuid,
11+
termseal
12+
]},
13+
{env,[]},
14+
{modules, []},
15+
16+
{licenses, ["Apache-2.0"]},
17+
{links, [
18+
{"GitHub",
19+
"https://github.com/grisp/grisp_updater"
20+
},
21+
{"Changelog",
22+
"https://github.com/grisp/grisp_updater/blob/main/CHANGELOG.md"
23+
},
24+
{"Homepage",
25+
"https://www.grisp.org"
26+
}
27+
]},
28+
{files, [
29+
"LICENSE",
30+
"README.md",
31+
"rebar.*",
32+
"rebar.config",
33+
"rebar.lock",
34+
"include",
35+
"src"
36+
]}
1737
]}.

0 commit comments

Comments
 (0)