Skip to content

Commit a23810c

Browse files
authored
Merge pull request #62 from UncleGrumpy/release-0.8.2
Prepare 0.8.2 release
2 parents 9db7fc6 + 338352c commit a23810c

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ 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.8.2] (2026.02.24)
13+
- Fixed a bug where prune removed modules that were only present as callbacks
14+
1215
## [0.8.1] (2026.2.16)
1316
- Fixed bug in packbeam escript when assembling library AMVs with the `--lib` option
1417

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rel:
2626
rebar3 as prod tar
2727
rm -rf x
2828
mkdir x
29-
./install.sh x 0.8.1
29+
./install.sh x 0.8.2
3030
x/bin/packbeam version
3131

3232
clean:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ To build a release, run the following commands:
3434
These commands will create an Erlang tar archive containing a versioned release of the `atomvm_packbeam` tool, e.g.,
3535

3636
...
37-
===> Tarball successfully created: _build/prod/rel/atomvm_packbeam/atomvm_packbeam-0.8.1.tar.gz
37+
===> Tarball successfully created: _build/prod/rel/atomvm_packbeam/atomvm_packbeam-0.8.2.tar.gz
3838

3939
in your local working directory.
4040

4141
> 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!
4242
4343
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.
4444

45-
shell$ ./install.sh /opt/atomvm_packbeam 0.8.1
46-
atomvm_packbeam version 0.8.1 installed in /opt/atomvm_packbeam.
45+
shell$ ./install.sh /opt/atomvm_packbeam 0.8.2
46+
atomvm_packbeam version 0.8.2 installed in /opt/atomvm_packbeam.
4747

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

7070
shell$ packbeam help
7171

72-
packbeam version 0.8.1
72+
packbeam version 0.8.2
7373

7474
Syntax:
7575
packbeam <sub-command> <options> <args>

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
]}.
5151

5252
{relx, [
53-
{release, {atomvm_packbeam, "0.8.1"}, [
53+
{release, {atomvm_packbeam, "0.8.2"}, [
5454
kernel,
5555
stdlib,
5656
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.8.1"},
25+
{vsn, "0.8.2"},
2626
{registered, []},
2727
{applications, [kernel, stdlib]},
2828
{env, []},

0 commit comments

Comments
 (0)