diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d7a598..bcbb58e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,18 @@ 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). -## [0.7.4] (unreleased) +## [0.7.4] (2024.06.06) +### Added - Added support for the `--application` (or `-a`) option to support AtomVM OTP applications. +### Fixed +- Fixed the `rebar3 new atomvm_app` template rebar.config file to use the provided app name for the start module. + ### Changed - Using the `-s init` option is still supported but deprecated. Use the `--application` (or `-a`) option to generate OTP applications using AtomVM. +- `pico_flash` task now uses picotool to reset the rp2040 device if a serial monitor is attached. ## [0.7.3] (2023.11.25) diff --git a/README.md b/README.md index 15c3267..c388309 100644 --- a/README.md +++ b/README.md @@ -401,7 +401,7 @@ You may use the `pico_flash` task to copy the generated AtomVM packbeam applicat The `pico_flash` task depends on the `uf2create` task which in turn depends on `packbeam`, so in most cases it is not necessary to execute either of those tasks if the default settings are used, as any changes to modules in the project will get rebuilt before being flashed to the device. shell$ rebar3 atomvm pico_flash - ===> Fetching atomvm_rebar3_plugin v0.7.3 + ===> Fetching atomvm_rebar3_plugin v0.7.4 ===> Fetching rebar3_hex v7.0.6 ===> Fetching hex_core v0.8.4 ===> Fetching verl v1.1.1 @@ -409,7 +409,7 @@ The `pico_flash` task depends on the `uf2create` task which in turn depends on ` ===> Compiling hex_core ===> Compiling verl ===> Compiling rebar3_hex - ===> Fetching atomvm_packbeam v0.6.0 + ===> Fetching atomvm_packbeam v0.7.3 ===> Fetching rebar3_proper v0.12.1 ===> Analyzing applications... ===> Compiling rebar3_proper @@ -493,7 +493,7 @@ The `uf2create` task depends on the `packbeam` task, so the packbeam file will g use the `version` task to print the current verison of the [`atomvm_rebar3_plugin`](https://atomvm.github.io/atomvm_rebar3_plugin) to the console. shell$ rebar3 atomvm version - 0.7.3 + 0.7.4 ### The `bootstrap` task diff --git a/rebar.config b/rebar.config index 60ac517..5c64f77 100644 --- a/rebar.config +++ b/rebar.config @@ -1,6 +1,6 @@ {erl_opts, [debug_info]}. -{deps, [{atomvm_packbeam, "0.7.2"}]}. +{deps, [{atomvm_packbeam, "0.7.3"}]}. {ex_doc, [ {source_url, <<"https://github.com/atomvm/atomvm_rebar3_plugin">>}, diff --git a/src/atomvm_rebar3_plugin.app.src b/src/atomvm_rebar3_plugin.app.src index 63b5822..95de4be 100644 --- a/src/atomvm_rebar3_plugin.app.src +++ b/src/atomvm_rebar3_plugin.app.src @@ -16,7 +16,7 @@ %% {application, atomvm_rebar3_plugin, [ {description, "A rebar plugin for manipulating AtomVM AVM files"}, - {vsn, "0.7.3"}, + {vsn, "0.7.4"}, {registered, []}, {applications, [kernel, stdlib]}, {env, []},