Skip to content

Commit

Permalink
Merge pull request #23 from atomvm/prepare-0.7.3-release
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGrumpy authored Nov 25, 2023
2 parents 103bcc5 + 04004c1 commit 7b7a329
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -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">>},
Expand Down
2 changes: 1 addition & 1 deletion src/atomvm_rebar3_plugin.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -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, []},
Expand Down

0 comments on commit 7b7a329

Please sign in to comment.