Skip to content
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ 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] - (2025.05.25)

- Add support for OTP-28
- Added missing licences files, and CI workflow to ensure reuse compliance

>This release includes changes from 0.7.3 that were not included in the release due to a bad release tag.

## [0.7.3] (2024.06.06)

- Fix broken `create` task in the cli tool.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rel:
rebar3 as prod tar
rm -rf x
mkdir x
./install.sh x 0.7.3
./install.sh x 0.7.4
x/bin/packbeam version

clean:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ On-line help is available via the `help` sub-command:

shell$ packbeam help

packbeam version 0.7.2
packbeam version 0.7.4

Syntax:
packbeam <sub-command> <options> <args>
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
]}.

{relx, [
{release, {atomvm_packbeam, "0.7.3"}, [
{release, {atomvm_packbeam, "0.7.4"}, [
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 @@ -22,7 +22,7 @@
[
{description,
"An escript and library to manipulate (create, list, delete) AtomVM PackBeam files"},
{vsn, "0.7.3"},
{vsn, "0.7.4"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
Expand Down