Packages

Conventional-Commits-driven semantic releases for Gleam: analyse commits, compute the next version, generate release notes, and publish to Hex/npm and GitHub. A native Gleam port of semantic-release.

Current section

Files

Jump to
version_bump src version_bump_ffi.erl
Raw

src/version_bump_ffi.erl

-module(version_bump_ffi).
-export([halt/1]).
%% Halt the BEAM with the given exit status code. Used by the CLI to exit
%% non-zero on a failed release. Returns no value (the VM stops).
halt(Code) ->
erlang:halt(Code).