From 345dc663c7b33146887b72217b3ba3ccd977801b Mon Sep 17 00:00:00 2001 From: GalaxyGorilla Date: Wed, 2 Feb 2022 12:12:58 +0100 Subject: [PATCH] Version 2.0.0 --- .gitignore | 1 - CHANGELOG.md | 16 ++++++++++++++++ rebar.lock | 11 +++++++++++ src/grisp_cryptoauth.app.src | 4 ++-- 4 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 rebar.lock diff --git a/.gitignore b/.gitignore index c0bbbf5..b7102cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -*.lock _build *.o _checkouts diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..aa486fe --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# 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] + +## [2.0.0] - 2022-02-01 + +- Initial release + +[Unreleased]: https://github.com/grisp/grisp_cryptoauth/compare/2.0.0...HEAD +[2.0.0]: https://github.com/grisp/grisp_cryptoauth/compare/35942fd38f38c6c118930cbc0bc77e95a11710cb...2.0.0 diff --git a/rebar.lock b/rebar.lock new file mode 100644 index 0000000..d565844 --- /dev/null +++ b/rebar.lock @@ -0,0 +1,11 @@ +{"1.2.0", +[{<<"grisp">>,{pkg,<<"grisp">>,<<"2.0.0">>},0}, + {<<"mapz">>,{pkg,<<"mapz">>,<<"2.2.0">>},1}]}. +[ +{pkg_hash,[ + {<<"grisp">>, <<"B90E2D51D215FBAFFC94CDFC712A566C82D90DA250B4417DE9686DF9923C05BE">>}, + {<<"mapz">>, <<"81EE5AD249BBC9427DAA6C3EE5166F88A448C5B0B2F5BBEE0495266308AFF2BA">>}]}, +{pkg_hash_ext,[ + {<<"grisp">>, <<"B2B7F2ACD53F6E7CA24E24B7B6EF3A8575CFE5C59338C1B564AE17163600BD5F">>}, + {<<"mapz">>, <<"861A878A86AB7E5897A9B57B3CA0B188FB53CE2935B153872C61F6641E709AA8">>}]} +]. diff --git a/src/grisp_cryptoauth.app.src b/src/grisp_cryptoauth.app.src index 5a8e496..1ddac3e 100644 --- a/src/grisp_cryptoauth.app.src +++ b/src/grisp_cryptoauth.app.src @@ -1,6 +1,6 @@ {application, grisp_cryptoauth, [{description, "Secure Element support for GRiSP2 based on cryptoauthlib"}, - {vsn, "2.0.0-rc1"}, + {vsn, "2.0.0"}, {registered, []}, {applications, [kernel, @@ -13,7 +13,7 @@ {env,[]}, {modules, []}, {mod, {grisp_cryptoauth_app, []}}, - {licenses, ["Apache License 2.0"]}, + {licenses, ["Apache-2.0"]}, {links, [{"Homepage", "https://www.grisp.org"}, {"GitHub", "https://github.com/grisp/grisp_cryptoauth"}]}