diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ad188..3553e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,11 @@ 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.3] (unreleased) +## [0.7.3] (2023.11.25) - Added support for compiling "bootstrap" erlang files that `rebar3` otherwise cannot compile. +- Added profiles to minimize downstream dependencies +- Misc license cleanup ## [0.7.2] (2023.10.24) diff --git a/README.md b/README.md index e5354f6..8faeab5 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.0 + ===> Fetching atomvm_rebar3_plugin v0.7.3 ===> Fetching rebar3_hex v7.0.6 ===> Fetching hex_core v0.8.4 ===> Fetching verl v1.1.1 @@ -491,7 +491,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.2 + 0.7.3 ### The `bootstrap` task diff --git a/rebar.config b/rebar.config index 06f1d4f..60ac517 100644 --- a/rebar.config +++ b/rebar.config @@ -1,6 +1,6 @@ {erl_opts, [debug_info]}. -{deps, [{atomvm_packbeam, "0.7.1"}]}. +{deps, [{atomvm_packbeam, "0.7.2"}]}. {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 b3b1ee4..63b5822 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.2"}, + {vsn, "0.7.3"}, {registered, []}, {applications, [kernel, stdlib]}, {env, []},