Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.7.3 release #17

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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] (2024.06.06)

- Fix broken `create` task in the cli tool.

## [0.7.2] (2023.11.24)

- Make use of profiles to minimize downstream dependencies
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rel:
rebar3 as prod tar
rm -rf x
mkdir x
./install.sh x 0.7.2
./install.sh x 0.7.3
x/bin/packbeam version

clean:
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
]}.

{relx, [
{release, {atomvm_packbeam, "0.7.2"}, [
{release, {atomvm_packbeam, "0.7.3"}, [
kernel,
stdlib,
atomvm_packbeam
Expand Down
2 changes: 1 addition & 1 deletion src/atomvm_packbeam.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[
{description,
"An escript and library to manipulate (create, list, delete) AtomVM PackBeam files"},
{vsn, "0.7.2"},
{vsn, "0.7.3"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
Expand Down
Loading