Skip to content

Commit d4346b9

Browse files
authored
Merge pull request #14 from atomvm/prepare-0.7.2-release
2 parents 48cbbc4 + 7e789e6 commit d4346b9

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,31 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.7.1]
7+
## [0.7.2] (2023.11.24)
8+
9+
- Make use of profiles to minimize downstream dependencies
10+
- Fix install.sh script on FreeBSD platform
11+
12+
## [0.7.1] (2023.10.22)
813

914
- Enhanced `packbeam_api` to make it more maintainable.
1015
- Changed documentation to use [`rebar3_ex_doc`](https://hexdocs.pm/rebar3_ex_doc/readme.html)
1116

12-
## [0.7.0]
17+
## [0.7.0] (2022.10.17)
1318

1419
- Added `version` sub-command to print version to the console
1520
- Added `-r`, `--remove` option and removed the `-i`, `--include` option, which was ineffective due to a bug. See the [Updating](UPDATING.md) notes on the impact of these changes.
1621

17-
## [0.6.2]
22+
## [0.6.2] (2023.10.14)
1823

1924
- Added `relx` stanzas to create a standalone release of the `packbeam` utility
2025
- Added install scripts to simplify installation for users
2126

22-
## [0.6.1]
27+
## [0.6.1] (2023.07.16)
2328

2429
- Added `extract` sub-command
2530

26-
## [0.6.0]
31+
## [0.6.0] (2022.12.18)
2732

2833
### Added
2934
- Added ability to include `<<"Line">>` chunks in BEAM files in generated AVM files
@@ -35,7 +40,7 @@ parameters, instead of coding paramters into function arguments. Previous
3540
versions of the `packbeam_api:create` function that take optional parameters
3641
have been deprecated.
3742

38-
## [0.5.0]
43+
## [0.5.0] (2022.08.28)
3944

4045
### Added
4146
- Added ability to specify a module name for ordinary (non-BEAM) files (API-only).
@@ -56,7 +61,7 @@ GNU-style conventions; deprecated single-hyphen short options.
5661
Previous `packbeam` API functions now call corresponding `packbeam_api`
5762
functions and are deprecated.
5863

59-
## [0.4.1]
64+
## [0.4.1] (2022.06.19)
6065

6166
### Added
6267
- Added unit tests
@@ -67,26 +72,26 @@ functions and are deprecated.
6772
### Changed
6873
- Weakened the test for finding a start BEAM file such that it only requires that the `?BEAM_START_FLAG` be set, for compatibility with [ExAtomVM](https://github.com/atomvm/ExAtomVM).
6974

70-
## [0.4.0]
75+
## [0.4.0] (2022.05.21)
7176

7277
### Added
7378
- Added `erlfmt` plugin and formatted code.
7479

7580
### Fixed
7681
- Fixed a bug that prevented packbeam files that include priv files from being properly loaded.
7782

78-
## [0.3.0]
83+
## [0.3.0] (2022.01.15)
7984

8085
### Fixed
8186
- Fixed a bug in pulling in dependent BEAM files based on the atoms table
8287

83-
## [0.2.0]
88+
## [0.2.0] (2021.04.03)
8489

8590
### Added
8691
- Added support for deployment to hex
8792

8893
### Fixed
8994
- Uncompressed literals table
9095

91-
## [0.1.0]
96+
## [0.1.0] (2020.05.17)
9297
- Initial Release

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ rel:
2424
rebar3 as prod tar
2525
rm -rf x
2626
mkdir x
27-
PACKBEAM_DEBUG=1 ./install.sh x 0.7.1
27+
./install.sh x 0.7.2
2828
x/bin/packbeam version
2929

3030
clean:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ On-line help is available via the `help` sub-command:
5959

6060
shell$ packbeam help
6161

62-
packbeam version 0.7.1
62+
packbeam version 0.7.2
6363

6464
Syntax:
6565
packbeam <sub-command> <options> <args>

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
]}.
4747

4848
{relx, [
49-
{release, {atomvm_packbeam, "0.7.1"}, [
49+
{release, {atomvm_packbeam, "0.7.2"}, [
5050
kernel,
5151
stdlib,
5252
atomvm_packbeam

src/atomvm_packbeam.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[
2121
{description,
2222
"An escript and library to manipulate (create, list, delete) AtomVM PackBeam files"},
23-
{vsn, "0.7.1"},
23+
{vsn, "0.7.2"},
2424
{registered, []},
2525
{applications, [kernel, stdlib]},
2626
{env, []},

0 commit comments

Comments
 (0)