Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.7.2 release #14

Merged
merged 1 commit into from
Nov 24, 2023
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
27 changes: 16 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,31 @@ 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.1]
## [0.7.2] (2023.11.24)

- Make use of profiles to minimize downstream dependencies
- Fix install.sh script on FreeBSD platform

## [0.7.1] (2023.10.22)

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

## [0.7.0]
## [0.7.0] (2022.10.17)

- Added `version` sub-command to print version to the console
- 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.

## [0.6.2]
## [0.6.2] (2023.10.14)

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

## [0.6.1]
## [0.6.1] (2023.07.16)

- Added `extract` sub-command

## [0.6.0]
## [0.6.0] (2022.12.18)

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

## [0.5.0]
## [0.5.0] (2022.08.28)

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

## [0.4.1]
## [0.4.1] (2022.06.19)

### Added
- Added unit tests
Expand All @@ -67,26 +72,26 @@ functions and are deprecated.
### Changed
- 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).

## [0.4.0]
## [0.4.0] (2022.05.21)

### Added
- Added `erlfmt` plugin and formatted code.

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

## [0.3.0]
## [0.3.0] (2022.01.15)

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

## [0.2.0]
## [0.2.0] (2021.04.03)

### Added
- Added support for deployment to hex

### Fixed
- Uncompressed literals table

## [0.1.0]
## [0.1.0] (2020.05.17)
- Initial Release
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rel:
rebar3 as prod tar
rm -rf x
mkdir x
PACKBEAM_DEBUG=1 ./install.sh x 0.7.1
./install.sh x 0.7.2
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 @@ -59,7 +59,7 @@ On-line help is available via the `help` sub-command:

shell$ packbeam help

packbeam version 0.7.1
packbeam version 0.7.2

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 @@ -46,7 +46,7 @@
]}.

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