Skip to content

Commit 67a8199

Browse files
authored
Merge pull request #40 from UncleGrumpy/release_0.7.5
Prepare 0.7.5 release
2 parents c4da931 + 9323d7e commit 67a8199

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ All notable changes to this project will be documented in this file.
99
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

12+
## [0.7.5] - (2025.08.18)
13+
14+
- Fix unnecessary warning about missing `sasl`
15+
- Corrected install documentation
16+
1217
## [0.7.4] - (2025.05.25)
1318

1419
- Add support for OTP-28
15-
- Added missing licences files, and CI workflow to ensure reuse compliance
20+
- Added missing license files, and CI workflow to ensure reuse compliance
1621

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rel:
2525
rebar3 as prod tar
2626
rm -rf x
2727
mkdir x
28-
./install.sh x 0.7.4
28+
./install.sh x 0.7.5
2929
x/bin/packbeam version
3030

3131
clean:

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ This tool roughly approximates the functionality of the AtomVM `PackBEAM` utilit
1515

1616
The `packbeam` tool may be used on its own as a stand-alone command-line utility. More typically, it is used internally as part of the [`atomvm_rebar3_plugin`](https://github.com/atomvm/atomvm_rebar3_plugin) [`rebar3`](https://rebar3.org) plugin.
1717

18+
[Releases](https://hex.pm/packages/atomvm_packbeam) and
19+
[accompanying documentation](https://hexdocs.pm/atomvm_packbeam/readme.html) are available on
20+
[hex.pm](https://hex.pm). The documentation for the current master branch is always available from
21+
the [`atomvm_packbeam` GitHub pages](https://atomvm.github.io/atomvm_packbeam/readme.html).
22+
1823
## Prerequisites
1924

2025
Building `packbeam` requires a version of Erlang/OTP compatible with [AtomVM](https://github.com/atomvm/AtomVM), as well as a local installation of [`rebar3`](https://rebar3.org). Optionally, any recent version of `make` may be used to simplify builds. Consult the [AtomVM Documentation](https://doc.atomvm.org/latest/) for information about supported OTP versions.
@@ -29,16 +34,16 @@ To build a release, run the following commands:
2934
These commands will create an Erlang tar archive containing a versioned release of the `atomvm_packbeam` tool, e.g.,
3035

3136
...
32-
===> Tarball successfully created: _build/prod/rel/atomvm_packbeam/atomvm_packbeam-0.6.2.tar.gz
37+
===> Tarball successfully created: _build/prod/rel/atomvm_packbeam/atomvm_packbeam-0.7.5.tar.gz
3338

3439
in your local working directory.
3540

3641
> IMPORTANT! The files in this tar archive do not contain the `atomvm_packbeam` prefix, so extracting these files without care will create a `bin` and `lib` directory in the location into which files from the archive is extracted. See the example below before proceeding!
3742
3843
You can use the `install.sh` script to install the `atomvm_packbeam` utility into a location on your local machine. You will need to specify the prefix location into which you want to install the utility, together with it's current version.
3944

40-
shell$ ./install.sh /opt/atomvm_packbeam 0.7.4
41-
atomvm_packbeam version 0.7.4 installed in /opt/atomvm_packbeam.
45+
shell$ ./install.sh /opt/atomvm_packbeam 0.7.5
46+
atomvm_packbeam version 0.7.5 installed in /opt/atomvm_packbeam.
4247

4348
> Note. Some prefix locations may require `root` permissions to write files to.
4449
@@ -64,7 +69,7 @@ On-line help is available via the `help` sub-command:
6469

6570
shell$ packbeam help
6671

67-
packbeam version 0.7.4
72+
packbeam version 0.7.5
6873

6974
Syntax:
7075
packbeam <sub-command> <options> <args>

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
]}.
4949

5050
{relx, [
51-
{release, {atomvm_packbeam, "0.7.4"}, [
51+
{release, {atomvm_packbeam, "0.7.5"}, [
5252
kernel,
5353
stdlib,
5454
atomvm_packbeam

src/atomvm_packbeam.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
[
2323
{description,
2424
"An escript and library to manipulate (create, list, delete) AtomVM PackBeam files"},
25-
{vsn, "0.7.4"},
25+
{vsn, "0.7.5"},
2626
{registered, []},
2727
{applications, [kernel, stdlib]},
2828
{env, []},

0 commit comments

Comments
 (0)