From 104a36c6c849c52b694b2e7f0d57b76cdd0f6876 Mon Sep 17 00:00:00 2001 From: Winford Date: Fri, 14 Feb 2025 16:10:57 -0800 Subject: [PATCH] Prepare 0.7.4 release New release to include the fixes for v0.6.3 that were missed due to a bad tag, add OTP 28 support, and include license information for all files. Closes #19 Signed-off-by: Winford --- CHANGELOG.md | 5 ++++- Makefile | 2 +- README.md | 2 +- rebar.config | 2 +- src/atomvm_packbeam.app.src | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b24ef05..252a429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Makefile b/Makefile index cc661e3..987dfc7 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/README.md b/README.md index b028ac1..abea03a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/rebar.config b/rebar.config index af7a11b..fae48c5 100644 --- a/rebar.config +++ b/rebar.config @@ -48,7 +48,7 @@ ]}. {relx, [ - {release, {atomvm_packbeam, "0.7.3"}, [ + {release, {atomvm_packbeam, "0.7.4"}, [ kernel, stdlib, atomvm_packbeam diff --git a/src/atomvm_packbeam.app.src b/src/atomvm_packbeam.app.src index a5174bf..bb3a9bb 100644 --- a/src/atomvm_packbeam.app.src +++ b/src/atomvm_packbeam.app.src @@ -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, []},